A Al Reid Feb 6, 2004 #1 What is considered the best or most appropriate to terminate a VB.Net application? Application.Exit? End?
What is considered the best or most appropriate to terminate a VB.Net application? Application.Exit? End?
A Armin Zingler Feb 6, 2004 #2 Al Reid said: What is considered the best or most appropriate to terminate a VB.Net application? Application.Exit? End? Click to expand... Stop all running threads by exitting all procedures called by the thread main procedures. If you have only one thread and set a Form as the startup object, close the startup Form. -- Armin How to quote and why: http://www.plig.net/nnq/nquote.html http://www.netmeister.org/news/learn2quote.html
Al Reid said: What is considered the best or most appropriate to terminate a VB.Net application? Application.Exit? End? Click to expand... Stop all running threads by exitting all procedures called by the thread main procedures. If you have only one thread and set a Form as the startup object, close the startup Form. -- Armin How to quote and why: http://www.plig.net/nnq/nquote.html http://www.netmeister.org/news/learn2quote.html
H Herfried K. Wagner [MVP] Feb 6, 2004 #3 * "Al Reid said: What is considered the best or most appropriate to terminate a VB.Net application? Click to expand... Closing the main form.
* "Al Reid said: What is considered the best or most appropriate to terminate a VB.Net application? Click to expand... Closing the main form.
T Tom Leylan Feb 6, 2004 #4 You'll notice here: http://msdn.microsoft.com/library/d...stemwindowsformsapplicationclassexittopic.asp that the Form.Closing and Form.Closed events will not be called if you use Application.Exit Tom
You'll notice here: http://msdn.microsoft.com/library/d...stemwindowsformsapplicationclassexittopic.asp that the Form.Closing and Form.Closed events will not be called if you use Application.Exit Tom