Configure Startup form in Visual Studio 2005
Configure Startup form in Visual Studio 2005
How to change startup form in Visual Studio 2005
?
Open Project or Create new Windows Project from the VS 2005
?
Open Solution Explorer
?
Find the “Program.cs” From the Solution Explorer and Open That file
?
You can find code from the “Program.cs”
?
[STAThread]? ? ? ? ? ? ? static void
?
Right now Form1 is the startup form for this project
Application.Run(new Form1 ());? Change the Start up form1 to form2 then please change the code as below ?
Application.Run(new Form2());