Custom Query
Results (49 - 51 of 3871)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#153 | Fixed | Running process with $STDOUT_CHILD kills ConsoleWrite. | Valik | Saunders <admin@…> |
Description |
When the following code is run nothing appears in the console. It's not a big worry, but I thought it should be reported. #include <Constants.au3> Global $iTimer = TimerInit() Global $iProcess = Run('cmd.exe /c', @SystemDir, @SW_SHOW, $STDOUT_CHILD) Do ConsoleWrite('No ConsoleWrite for you!') Sleep(100) Until TimerDiff($iTimer) > 5000 StdioClose($iProcess) ConsoleWrite('That''s all folks!' & @CRLF) |
|||
#165 | Fixed | 'Check for Updates' on Vista x64 | Jon | jhall@… |
Description |
When using the 'check for updates' utility under Vista x64, it fails to detect the installed versions of AutoIT. I think this is due to where the installation details are written to the registry in Vista x64 (and probably any other x64 Windows version). I'm guessing the utility is expecting to find this info here: HKEY_LOCAL_MACHINE\SOFTWARE\AutoIt v3 When Vista x64 is actually writting it here: HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\AutoIt v3 |
|||
#166 | Fixed | _ArrayMax() runs on invalid array. | Jos | Evilertoaster |
Description |
See http://www.autoitscript.com/forum/index.php?showtopic=66284. The _ArrayMax() function only works on 1 dimentional arrays, but does not return a error if someone tries it with a multi-dimentional array. This results in a crash from within the UDF. Proposed solution is to add this to line 319 of Array.au3- 'If IsArray($avArray) and UBound($avArray,0)=1 Then' which would make sure the array is single dimentional before attempting to run. |