C # Form2 calling Form1

1

Good evening I'm developing a product registration application, however I need to call form2 first than form1. Could you help me with how to do this?

    
asked by anonymous 10.12.2017 / 23:20

1 answer

0

Go to the file Program.cs and there you will find the following line

Application.Run(new Form1());

Switch to the form you want to use. In your case:

Application.Run(new Form2());
    
10.12.2017 / 23:25