I have two forms in a visual C# forms application. I want to load one form before the other, however it automatically loads form1 first (even though that's the one I want to have load second).
How do I change that?
|
|
|
Look at
Change that to start with the second form. |
|||
|
|
|
you need to modify
it is loading Form1.cs by default you can set to load any form If i want to launch
|
|||
|
|
|
In your project's properties, you can change wich form is loaded at startup. If I remember correctly, in the Project Explorer dock, if you right-click a form, you can choose the option Set as startup object (or was that only for "sub-projects"?). |
|||||
|