Winston Posted February 25, 2003 Posted February 25, 2003 wats the method of controlling wat the close button does in vb.net like how some programs wen u click the 'X' it minimizes to the tray Quote
*Experts* Nerseus Posted February 25, 2003 *Experts* Posted February 25, 2003 With few exceptions, you do nothing special when the user presses the "x" to close a window. You may trap the Closing event to pop up a message to the user, such as "Are you sure you want to Close?". The applications I've seen that use the "x" to minimize to the tray are definitely exceptions, such as WinAmp or an instant messenger. If you're coding something similarly complex, I'd get a good understanding of the language before proceeding. If it's a standard Windows app, the "x" just closes the form, something that happens automatically so you won't need any code. -Nerseus Quote "I want to stand as close to the edge as I can without going over. Out on the edge you see all the kinds of things you can't see from the center." - Kurt Vonnegut
Winston Posted February 25, 2003 Author Posted February 25, 2003 Well wasnt too hard someone helped me it was quite easy in terms of controlling it on the OnClosing event you put in e.cancel =true thanks anyway 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.