J j1mb0jay Feb 12, 2007 #2 Chris said: How do I unload a form in C#? Click to expand... You could do this.Dispose(); add any other disposing methods to this method.
Chris said: How do I unload a form in C#? Click to expand... You could do this.Dispose(); add any other disposing methods to this method.
G Guest Feb 12, 2007 #3 Well, if you look at the methods of the form class, all the options available to you are there to see. I think you have Close, Hide, .... Peter
Well, if you look at the methods of the form class, all the options available to you are there to see. I think you have Close, Hide, .... Peter
I Ignacio Machin \( .NET/ C# MVP \) Feb 12, 2007 #4 Hi, | How do I unload a form in C#? | What are you trying to do? Usually it's enough just to call Close()
Hi, | How do I unload a form in C#? | What are you trying to do? Usually it's enough just to call Close()
J j1mb0jay Feb 15, 2007 #7 David said: What would you say is the advantage of Dispose over Close? Click to expand... If i remember Close calls Dispose anyway
David said: What would you say is the advantage of Dispose over Close? Click to expand... If i remember Close calls Dispose anyway