I had a single window form compiled in a winform project. Now I add a new form, rename the old form with ".sav" extension, move it to an archive folder in the project, recompile the project and am surprised to see the old form shows instead of the new form. How can I set a start form among many like on a webform project Thanks.

How to set start form
Dennis L. Hughes
Jitu
You also have the Main method, usually located in Form1:
[STAThread]
static void Main()
{
Application.Run(new Form1());
}
You can change the startup form here and even add a condition to choose a form at run-time.
Simon Tamman