- Home
·
- Miscellaneous
·
- Easily display 'Exit?' message box with one procedure, asks if user would like to exit the program,
Easily display 'Exit?' message box with one procedure, asks if user would like to exit the program,
Easily display 'Exit?' message box with one procedure, asks if user would like to exit the program, uses the specified application name.
Rate Easily display 'Exit?' message box with one procedure, asks if user would like to exit the program,
(1(1 Vote))
Dim M
M = MsgBox("Are you sure you want to exit " + AppName + "?", vbYesNo + vbExclamation, "Exit " + AppName + "?")
If M = vbYes Then End
ElseIf M = vbNo Then Exit Sub
'For more VB, great software and more goto http://www.yarinteractive.com
'The Homepage of yar-interactive software
End Sub
Easily display 'Exit?' message box with one procedure, asks if user would like to exit the program, Comments
No comments yet — be the first to post one!
Post a Comment