Jump to content

howto check return value


Recommended Posts

How do I check the "return" value for this instruction: msgbox(4,"CONFIRM","You entered: " & $answer & " is that correct")

I tried looking at @error, but that didn't work - thanks

You can use the returned value directly as a compare operator:
While 1
    $answer = InputBox("Test", "Input answer: ")
    If MsgBox(4, "CONFIRM", "You entered: " & $answer & " is that correct") = 6 Then
        MsgBox(64, "Yes!", "Yes!", 2)
        ExitLoop
    Else
        MsgBox(16, "No!", "No!", 2)
    EndIf
WEnd

Or, you could save it to a variable:

While 1
    $answer = InputBox("Test", "Input answer: ")
    $reply = MsgBox(4, "CONFIRM", "You entered: " & $answer & " is that correct", 5)
    Switch $reply
        Case 6
            MsgBox(64, "Yes!", "Yes!", 2)
            ExitLoop
        Case 7
            MsgBox(16, "No!", "No!", 2)
        Case Else
            MsgBox(32, "Error", "Click faster!", 2)
    EndSwitch
WEnd

:P

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
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...