shay Posted February 25, 2010 Posted February 25, 2010 Hi all i use this code for error handling many times in my script if $fileEx = 0 Then MsgBox (0,"script", "Error: unable to find D:\dir\file.exe") Exit EndIf if $fileEx2 = 0 Then MsgBox (0,"script", "Error: unable to find D:\dir\file.exe") Exit EndIf is there any way to to improve this code ? possibly somthing like this?? f $fileEx or $fileEx2 = 0 then .... "If the facts don't fit the theory, change the facts." Albert Einstein
JohnOne Posted February 25, 2010 Posted February 25, 2010 if $fileEx = 0 Or $filex2 = 0 Then MsgBox (0,"script", "Error: unable to find D:\dir\file.exe") Exit EndIf AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
jvanegmond Posted February 25, 2010 Posted February 25, 2010 _someCheck($fileEx) _someCheck($fileEx2) Func _someCheck($var) If $var = 0 Then MsgBox (0,"script", "Error: unable to find D:\dir\file.exe") Exit EndIf EndFunc github.com/jvanegmond
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