Custom Query (3927 matches)
Results (397 - 399 of 3927)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1512 | No Bug | StdoutRead no correct output with german language OS | ||
| Description |
Hi, StdoutRead does not produce the correct output I've an image with the correct output. Console Output =
+>13:39:42 Starting AutoIt3Wrapper v.2.0.0.3 Environment(Language:0409 Keyboard:00020409 OS:WIN_VISTA/ CPU:X64 OS:X64)
+>13:39:42 AU3Check ended.rc:0
3240 C:\Windows\system32\cmd.exe /c chkdsk c: StdoutRead: Zugriff verweigert, das Sie nicht ber ausreichende Berechtigungen verfgen. Sie mssen dieses Programm mit erh”hten Rechten ausfhren. +>13:39:43 AutoIT3.exe ended.rc:0 +>13:39:44 AutoIt3Wrapper Finished
[code example] (not mine) #include <Constants.au3> Local $foo, $cmd Local $line $cmd = @ComSpec & " /c chkdsk c:" $foo = Run($cmd, @SystemDir, @SW_HIDE, $STDERR_CHILD + $STDOUT_CHILD) dbg($foo) dbg($cmd) While 1
Wend Exit Func dbg($msg, $error=@error, $extended=@extended, $ScriptLineNumber=@ScriptLineNumber)
EndFunc Thanks Emiel |
|||
| #1520 | No Bug | _ArrayAdd doesn't work after _ArrayDelete has removed the last element | ||
| Description |
_ArrayDelete returns an empty string after the last element of an array has been removed. _ArrayAdd will not then work, as the variable is no longer an array. _ArrayAdd could be simply amended to test for an empty string and assign a one-element array to the variable, possinly using the internal _ArrayCreate function. Alternatively, if the existing behaviour of not being able to replace an empty string with an array needs to be conserved, _ArrayDelete could be amended to return a special value that could then be detected by _ArrayAdd. I don't know enough about the AutoIt internals to know if such a special value could be crafted that would not clash with existing functionality or cause additional problems to such functions as UBound() which should retain its existing behaviour of returning 0 for an "empty array" special value. |
|||
| #1524 | No Bug | Bug: Helpfile INetGet return value | ||
| Description |
INetGet 3.3.0.0 help says "Return Value Success: Returns 1. Failure: Returns 0." In fact success returns 0 and failure returns various values depending on error. Eg., file not found = 7.
|
|||
