ADO DOT NET
Centurion
- Joined
- Dec 20, 2006
- Messages
- 160
In FormClosing event of my 1st form, I show the 2nd form like this:
But the problem is that Form1 waits for Form2 to be closed and then it closes!
How should I let's Form1 to completely unload and then load the Form2?
Thanks
Visual Basic:
Private Sub Form1_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
Dim F As New Form2
F.ShowDialog()
End Sub
How should I let's Form1 to completely unload and then load the Form2?
Thanks