tags:

views:

24

answers:

2

How do I set form number four as the default form that will run when I press on f5 in visual studio 2008. Because form 1 will always be the first to start

+2  A: 

In the Project Properties, there's a field called "Startup form" - select your form in there.

Andy Shellam
+4  A: 
  1. Right-click on your project in solution explorer.
  2. Choose properties.
  3. Select the Application Tab.
  4. Select your form from the dropdown under 'startup form'
geoff