Custom Query
Results (112 - 114 of 3833)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#362 | Fixed | _GUICtrlListView_InsertItem() - doc typo | Gary | Zedna |
Description |
Parameters $sText Item text. If set to -1, the item set is set via the $LVN_GETDISPINFO notification message. should be $sText Item text. If set to -1, the item text is set via the $LVN_GETDISPINFO notification message. |
|||
#366 | Fixed | Weird crashing bug | Jpm | anonymous |
Description |
This line of code, anywhere within a script, whether it is ever executed or not (but not if it is a comment) will cause an unhandled win32 exception as soon as you try to run the script. $ne w_radius=10 Found this as a result of an inadvertent space that got put in a line. Occurs in release .12 and beta .13 on Windows XP Pro SP3. |
|||
#367 | Fixed | StdOutRead Error in compiled program | Valik | anonymous |
Description |
Hallo, StdOutRead produces an error in the compiled program: (compiled with AutoIt 3.2.13.0 Beta, WinXP) From the help-file: ; Demonstrates StdoutRead() #include <Constants.au3> Local $foo = Run(@ComSpec & " /c dir foo.bar", @SystemDir, @SW_HIDE, $STDERR_CHILD + $STDOUT_CHILD) Local $line While 1 $line = StdoutRead($foo) If @error Then ExitLoop MsgBox(0, "STDOUT read:", $line) Wend While 1 $line = StderrRead($foo) If @error Then ExitLoop MsgBox(0, "STDERR read:", $line) Wend MsgBox(0, "Debug", "Exiting...") The compiled demo will show following message: AutoIt Error Line -1: Error: Unknown function name. The uncompiled demo works OK. Many thanks to the developer-team of AutoI. Very good job. |