Hello guys. I have more Windows Forms Application, and i want to set which Form to start when i enter in my application.

For example ... first i created the first form, Form1, and this appears when i run my program. After, i created Form2 ... i want, like when i enter in my program, Form2 to run first ...

Thanks !

Recommended Answers

All 2 Replies

In Program.cs you should find a line like this Application.Run(new Form1()); To run Form2 first just change Form1 to Form2.

Thanks a lot

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.