Does anybody know how to setup the starting form of a winforms project in Visual Studio 2010? I have ridden to go to Project Properties and change Startup Object, but in dowpdownlist the only options available were “(None)” and “ProjectName.Program.cs”. The “program.cs” is my default code file. Please help me. (Im working in C#)
Share
In your Program.cs, there is line like:
where you can substitute the form you’d like to start. If you change
Form1to another Form class, your project will start with that one.