Mar 16, 2001 #1 Guest_imported New member Joined Jan 1, 1970 Messages 0 what function would i use to exit an application completely??
Mar 17, 2001 #2 rb2000z Programmer Joined Oct 28, 2000 Messages 3 Location SA try this one // Exi the application OnOK(); good luck! rb2000z Upvote 0 Downvote
Mar 20, 2001 #3 stefee Programmer Joined Aug 25, 2000 Messages 12 Location US you could even try //exit program exit(1); stefee Upvote 0 Downvote
Mar 20, 2001 #4 TGM IS-IT--Management Joined Mar 14, 2001 Messages 141 Location BE Hi An other good way to do it (that is, using Windows message) is the following: // Kill app AfxGetMainWnd()->PostMessage( WM_CLOSE); Thierry Thierry.Marneffe@swing.be Upvote 0 Downvote
Hi An other good way to do it (that is, using Windows message) is the following: // Kill app AfxGetMainWnd()->PostMessage( WM_CLOSE); Thierry Thierry.Marneffe@swing.be