Newbie2 0 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 Share this post Link to post Share on other sites
Jos 2,165 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. Share this post Link to post Share on other sites
Newbie2 0 Posted June 21, 2004 As usual, :iamstupid: 10x, JdeB Share this post Link to post Share on other sites