D DNK May 19, 2004 #1 Hi, how to unload a form in vb.net (equivalanet code for vb6 - [unload me] ) thanks dnk.
H Herfried K. Wagner [MVP] May 19, 2004 #2 * "DNK said: how to unload a form in vb.net (equivalanet code for vb6 - [unload me] ) Click to expand... \\\ Me.Close() ///
* "DNK said: how to unload a form in vb.net (equivalanet code for vb6 - [unload me] ) Click to expand... \\\ Me.Close() ///
C Cor Ligthert May 19, 2004 #4 Hi, In addition to the others, When it is a child form frmX.close When it is a dialogform (showdialog) frmX.dispose (as one of the exceptions) I hope this helps Cor
Hi, In addition to the others, When it is a child form frmX.close When it is a dialogform (showdialog) frmX.dispose (as one of the exceptions) I hope this helps Cor