Button usage
Visual Basic
4
Posts
4
Posters
0
Views
1
Watching
-
You make a new instance of the second form (ore use an existing one) and call it's Show or ShowDialog method. -------------------------------------------------------- My development blog Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us!
-
Dim myForm As New MySecondForm myForm.Show() ' or Dim result as DialogResult result = MyForm.ShowDialog()
Dave Kreskowiak Microsoft MVP - Visual Basic