GG asked ... Fix food processor motor?    |    T asked ... How do I turn the delay off on Electrolux DX302 dishwasher?    |    Helen asked ... How can I mend my Kenwood Gourmet FP505?    |    Roy Turner asked ... Kohlangaz Gosford HE fire?    |    Peter asked ... How can I mend a Powerwasher PRO PRO1800PWE?    |    Click here to ask your question

How do I unload a form in VB.NET?

I know that I can close a form in VB.NET by using the form.close command. Which command do I use to unload the form?
O.M., August 2003
The command you need is .... form.Dispose()

form would be the form's name. Dispose will close the form and release the object. This frees up the memory being used by the object. So this is a tidier method than the close method in VB.

Hope that helps.

Jinxy, February 2004