jefhal Posted November 18, 2008 Posted November 18, 2008 This code now seems to get stuck in a loop. Something must have changed with @error?, but I can't search the forum or help file for @error specifically... $pid = run(@comspec & " /c \\myserver\apps$\_bin\utils\AdFind.exe -b " & $scope & ' -dn -f name=' & $strComputer,@TempDir,"",$stdout_child) While 1 $out &= StdoutRead($pid) If @error = -1 Then ExitLoop ;;;;; this line never sees the error.... MsgBox(0, "STDOUT read:", $out) Wend Sorry if this is wonderously simple... ...by the way, it's pronounced: "JIF"... Bob Berry --- inventor of the GIF format
BinaryBrother Posted November 18, 2008 Posted November 18, 2008 (edited) I'm not a real experianced user in the AutoIt language, but the 16th May, 2008 - v3.2.12.0 version of Autoit included a few @error changes, if you've just upgraded or something... It could be that... I'm using v3.2.12.1, and havn't noticed any @error problems like yours... You could of course try, If $PID = 0 Then ExitLoop Success: The PID of the process that was launched. Failure: Returns 0 and sets @error to non-zero. Did Jos or I answer your question satisfactory? Edited November 18, 2008 by BinaryBrother SIGNATURE_0X800007D NOT FOUND
Developers Jos Posted November 18, 2008 Developers Posted November 18, 2008 Try: If @error Then ExitLoop;;;;; this line never sees the error.... 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.
jefhal Posted November 19, 2008 Author Posted November 19, 2008 Thanks Jos! Your tip on the new syntax for @error worked perfectly... Try: If @error Then ExitLoop;;;;; this line never sees the error.... ...by the way, it's pronounced: "JIF"... Bob Berry --- inventor of the GIF format
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