Custom Query (3917 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (364 - 366 of 3917)

Ticket Resolution Summary Owner Reporter
#365 Rejected Forum for standard UDF candidates Gary Wooltown
Description

It would be nice if there could be a section in the forum, where the users in the community could submit UDFs for review by other users, and they could vote if they think the UDF should be a part of the Standard UDF Library, the users could assist in writing examples and helpfiles.

#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.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.