unload, what is it mean?

Use Me.Close(), Unload Me doesnt work anymore.
To hide first one and show another one do this:
Visual Basic:
Dim formvariable As New FormClassName
Me.Hide()
formvariable.Show()
 
Back
Top