jacQues Posted January 25, 2008 Posted January 25, 2008 AutoIt code: DIM $char[2] $char[1] = "T1" IF StringInStr("",StringLeft($char[1],1),1) THEN MsgBox(0,"test","error1") ELSIF StringLen($char[1])==2 THEN MsgBox(0,"test","ok") ELSE MsgBox(0,"test","error2") ENDIF Someone point out to me why I keep getting error2. Either something obvious that I am missing or maybe even a bug. No clue. jacQues
PsaltyDS Posted January 25, 2008 Posted January 25, 2008 (edited) AutoIt code: DIM $char[2] $char[1] = "T1" IF StringInStr("",StringLeft($char[1],1),1) THEN MsgBox(0,"test","error1") ELSIF StringLen($char[1])==2 THEN MsgBox(0,"test","ok") ELSE MsgBox(0,"test","error2") ENDIF Someone point out to me why I keep getting error2. Either something obvious that I am missing or maybe even a bug. No clue. jacQues Because you spelled ElseIf wrong... but I can see why someone with 10 posts would assume the error had to be a bug in the scripting language before doing something complicated, like running syntax checker in SciTE. Edited January 25, 2008 by PsaltyDS 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
jacQues Posted January 25, 2008 Author Posted January 25, 2008 Because you spelled ElseIf wrong... but I can see why someone with 10 posts would assume the error had to be a bug in the scripting language before doing something complicated, like running syntax checker in SciTE. OMG, thanks. No I am (supposed to be) an professional programmer. Just not in AutoIt. Remind me to take a break after 12 hours of work. loljacQues
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