Window Navigation
Dear Users,
I have created two seperate forms and I would like to toggle between them using a MainMenu tool. I use the following code:
Dim sMyForm As New Form1()
Form1.ActiveForm.Show = False
Form2.ActiveForm.Show()
But this creates multiple forms? How do I get around this?
|