Jump to content

Another help thing..


Guest Meflak
 Share

Recommended Posts

Guest Meflak

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

Link to comment
Share on other sites

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 by Burrup

qq

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...