A better way of exiting
What is the best way of exiting from an application? In vb6 I always used 'unload me', or unloaded forms one at a time in the case of multi-form applications. There doesn't appear to be an unload command anymore, and I've tried Application.Exit but this doesn't shut everything down (when it works, which it doesn't every time!) Therefore I've resorted to issuing an 'End' command - this probably isn't the best way, but it appears to be the only one that really will terminate the application properly.
Thanks
|