cookiemonster Posted March 13, 2014 Posted March 13, 2014 Regardless of if the command is successful or the reason of it failing, i always get an error code of 0 Local $iPID = RunWait(@ComSpec & " /k " & 'adb connect ' & $var_ipaddress, @SystemDir, @SW_SHOW) $var = @error MsgBox(4096, "err", $var) Why is it when it passes through successfully i still get an error code of 0?
FireFox Posted March 13, 2014 Posted March 13, 2014 (edited) Hi, According to the helpfile, and it's the case for all autoit functions : Failure: sets the @error flag to non-zero. So you understood it's a success. Br, FireFox. Edited March 13, 2014 by FireFox
cookiemonster Posted March 13, 2014 Author Posted March 13, 2014 ah that makes a bit more sense because the code always manages to run, regardless if the end result is successful or not... bit lost on where to go from here but il have to have a think. Cheers
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