How to change the starting form?

  • Thread starter Thread starter yaya via DotNetMonster.com
  • Start date Start date
Y

yaya via DotNetMonster.com

Hi, I have 2 forms in my win application,
Form1 (default)
Form2 (added after create project)

Initially, when I run the application, the Form1 will be loaded,
if I wana change to Form2 to be loaded 1st...how can I do that?

Thankz :)
 
Look for the line w/ Application.Run - the paramater will currently be
Form1 - just change that to form2
 
Back
Top