FinalVersion Posted March 18, 2010 Posted March 18, 2010 (edited) Doesn't appear to be in the help file.Here is a simple C++ if statement, what would the Autoit equivilent be?if (somevar != 0){ // Some code here if somevar isn't 0 } Edited March 18, 2010 by FinalVersion [center][+] Steam GUI [+][+] Clipboard Tool [+][+] System :: Uptime [+][+] StarCraft II Mouse Trap [+][/center]
enaiman Posted March 18, 2010 Posted March 18, 2010 (edited) http://www.autoitscript.com/autoit3/docs/intro/lang_operators.htmSame title in the help file "Operators" Edited March 18, 2010 by enaiman SNMP_UDF ... for SNMPv1 and v2c so far, GetBulk and a new example script wannabe "Unbeatable" Tic-Tac-Toe Paper-Scissor-Rock ... try to beat it anyway :)
FinalVersion Posted March 18, 2010 Author Posted March 18, 2010 Thanks. [center][+] Steam GUI [+][+] Clipboard Tool [+][+] System :: Uptime [+][+] StarCraft II Mouse Trap [+][/center]
Valuater Posted March 18, 2010 Posted March 18, 2010 Maybe... $PID = Run("notepad.exe") If $PID = 0 Then MsgBox(4096, "Error", "Notepad did not start #1 ", 5) ElseIf $PID < 0 Then MsgBox(4096, "Error", "Notepad did not start #2 ", 5) Else MsgBox(4096, "Hurray!!", "Notepad started... 8) ", 5) EndIf 8)
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