New form

well assuming you have the form UI already drawn up in your project (and is named MyForm for example) just put this code in your buttons click event:

Dim fMyForm as New MyForm
fMyForm.Show()

-or- if you want it modal then

Dim fMyForm as New MyForm
fMyForm.ShowDialog()
 
Back
Top