Hi splitsie
To load a form
MyForm.Show
To Hide a form
MyForm.Hide
To unload a form
Unload MyForm
Remember :
A form can be loaded without it being shown
e.g Load MyForm
or by accessing any of the forms objects
e.g MyForm.Text1.Text = "Hallo World"
This will also load your form, but it will be hidden
-- Startup Form
In your project properties, there is a dropdown with a list of startup objects. Select the form you want your application to start with.
Hope this helps
Cheers
Toyman