hello from grecce i make an application which has three forms, the Form1 appears first when i run the app, how can i make the Form2 or form3 appears fisrt when i tun the app?? can you help me please? :) thank you in advance
hello from grecce i make an application which has three forms, the Form1 appears first when i run the app, how can i make the Form2 or form3 appears fisrt when i tun the app?? can you help me please? :) thank you in advance
From function 'static void Main()' of the application change line 'Application.Run(new Form1());' to 'Application.Run(new Form2());' or 'Application.Run(new Form3());'