volkerimmler Posted June 11, 2005 Posted June 11, 2005 The manual talks about the different return values of the msgbox (OK=1, Cancel=2, etc.) but where do they go? Is there something like the @error system variable that can be found in the input box, where I can check for the value?
GaryFrost Posted June 11, 2005 Posted June 11, 2005 $return = MsgBox(4097, "Test", "This is a test") If $return == 1 Then MsgBox(0,"test","Selected OK") ElseIf $return == 2 Then MsgBox(0,"test","Selected cancel") EndIf SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
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