Jump to content

Close Script When User Presses "Cancel" on Inputbox


Recommended Posts

Hello,

     How do you make the script close when you press "Cancel" on the InputBox()? Every time I press cancel it just continues as if I press "OK".

I've already tried the following:

$unit1 = Int(InputBox("Prompt","How many bla bla do you have?"))
If @error Then Exit
$unit1 = Int(InputBox("Prompt","How many bla bla do you have?"))
If @error=1 Then Exit
$unit1 = Int(InputBox("Prompt","How many bla bla do you have?"))
If @error=1 Then
   Exit
EndIf
$unit1 = Int(InputBox("Prompt","How many bla bla do you have?"))
If @error Then
   Exit
EndIf
Link to comment
Share on other sites

Hi,

Welcome to the autoit forum :)

The @error macro resets each time you call a function, in your script you call in first InputBox and then the @error macro is reset by the Int function.

$unit1 = InputBox("Prompt", "How many bla bla do you have?")
If @error Then Exit
$unit1 = Int($unit1)

ConsoleWrite("test" & @LF)

Br, FireFox.

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...