Guest Meflak Posted June 13, 2005 Posted June 13, 2005 Ok A buddie showed me this code it works great for the question but I want to know can I set up a no or do I have to use else..? func request_end() $MB_YESNO = 4 $MB_YES = 6 if MsgBox($MB_YESNO, $title, "End script?") == $MB_YES then Exit endif endfunc
buzz44 Posted June 13, 2005 Posted June 13, 2005 (edited) I would do it like this... Func Request_End() $MB = MsgBox(4 $Title, "End script?") If $MB = 6 Then Exit ElseIf $MB = 4 Then ;Do this if no is clicked. EndIf EndFunc Edited June 13, 2005 by Burrup qq
layer Posted June 13, 2005 Posted June 13, 2005 Or Func Request_End() If MsgBox(4, "Sure?", "Exit?") = 6 Then Exit Else ;Do whatever if no clicked EndIf EndFunc ;==>Request_End FootbaG
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now