PDA

View Full Version : load and unload forms in VB.Net


warpminded
12-20-03, 08:19 PM
Can anybody tell me what the correct code is for loading and unloading different forms in VB.Net. It is not the same as VB6.
i am really confused.

Shane
12-25-03, 01:27 AM
Can anybody tell me what the correct code is for loading and unloading different forms in VB.Net. It is not the same as VB6.
i am really confused.
FormName.Close

or

FormName.Dispose

Gaz_intheUK
02-14-04, 11:52 AM
Hi,

This may not be of any help to you, but I'm in the same boat, struggling with form Loads, unloads. Did you find the answer?

TLWallace
03-16-04, 12:07 PM
(form) FrmMain

The proper way to do this in VB.NET:

Dim frm as New FrmMain
Frm.Show