Of course you can unload the main form, just keep one form running or don't have any doeven'ts loops called from them.
Yep, it's as easy as V(ery) said, just use Form.Show or Form.Hide or just use the Form.visible property
Printable View
Of course you can unload the main form, just keep one form running or don't have any doeven'ts loops called from them.
Yep, it's as easy as V(ery) said, just use Form.Show or Form.Hide or just use the Form.visible property
Code:'code for preview form event
Form1.Visible = False
Load Form2
Form2.Show
'code for formMain
Unload Me
Form1.Visible = True
End Sub