How to setup the starting form of a winforms project in Visual Studio 2010

In your Program.cs, there is line like:

Application.Run(new Form1());

where you can substitute the form you’d like to start. If you change Form1 to another Form class, your project will start with that one.

Leave a Comment