coolfire Posted October 13, 2003 Posted October 13, 2003 Hi, where is the difference between: this.close(); Application.Exit; DialogResult = x; Is there a difference in deallocate the ressources?? MfG Quote
*Experts* mutant Posted October 13, 2003 *Experts* Posted October 13, 2003 The first method closes the window, it also gives you a chance to stop the closing using the Closing event, or do something after its closed using the Closed event. After that the window gets disposed. The Application.Exit lets the app process any remaining messages and then closes all windows for the appllication. What do mean by DialogResult = x;? Never seen this used to clase a window. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.