Newbie2 Posted June 21, 2004 Posted June 21, 2004 $x=InputBox ("","Please choose your input") If $x <> "1" OR $x <> "2" Then Msgbox (0,"Error","Invalid input. Exiting") Exit EndIf Why when I enter "2" as an input, I enter the IF? 10x
Developers Jos Posted June 21, 2004 Developers Posted June 21, 2004 (edited) If $X is not equal to 1 OR $X is not equal to 2 then do something...This is always true since $X can only have 1 value.You want to do an AND relation for this one. Edited June 21, 2004 by JdeB SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
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