If you mean the wrong Form is displayed, then it's simple: open the
Program.cs
file for the startup project (you'll find it in the Solution Explorer pane) and change the
Application.Run
call:
Application.Run(new FormYouGetAtTheMoment());
To
Application.Run(new FormYouWantToStartWith());