How do I set the first form to be loaded at application startup?
The first form to be loaded at the application startup is called the startup or main form of the application. You can set the startup form of the application by right clicking the target project node and selecting properties. It will show you the property pages for the project. Here in the Common PropertiesàGeneral, you can set the startup form by selecting its name from the drop down list of ‘Startup Object’.
C# Note
Remember that only those forms that have a valid Main() method can be selected as the startup object.
Index