Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I set the default form in vb.Net?

Tags:

vb.net

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

like image 315
user225269 Avatar asked Mar 03 '10 11:03

user225269


3 Answers

  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'
like image 187
Geoff Appleford Avatar answered Sep 21 '22 21:09

Geoff Appleford


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

like image 42
Andy Shellam Avatar answered Sep 18 '22 21:09

Andy Shellam


  1. Right-click your Project within the Solution Explorer.
  2. Choose Properties.
  3. Select the Web tab on the left-hand side.
  4. Under the Start Page section, define the Specific Page you would like to default to when the application is launched. Save your changes.

Illustration

like image 36
taimoor ali Avatar answered Sep 21 '22 21:09

taimoor ali