Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (124 - 126 of 3838)

Ticket Resolution Summary Owner Reporter
#400 Fixed SQLite.dll.au3 bug in beta 3.2.13.2 Gary ivan
Description

uses @ProcessorArch instead of @OSArch. I never reported a bug before, so forgive me if there's a mistake in this procedure (keywords?,Cc?). Regards, IVAN

#402 Fixed Execute crashe on failure in production version 3.2.12.1 martin
Description

Execute crashes rather than returning "" on failure in production version 3.2.12.1 Example Execute("Caps Lock") or Execute("$a b")

#415 Fixed CUI compiled scripts won't execute batch files properly Valik ResNullius
Description

The following script when run uncompiled behaves as expected, you are greeted with the "Press any key to continue" message and the batch file waits for a key press. But when compiled and run, it displays the message and immediately returns from the batch file without waiting for the key press.

#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_UseUpx=n
#AutoIt3Wrapper_Change2CUI=y
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****

$tmpBatFile = FileOpen("tmpBatFile.cmd",2)
FileWriteLine($tmpBatFile,"@Pause")
FileClose($tmpBatFile)
ConsoleWrite(@CRLF & "Are you Ready?" & @CRLF & @CRLF)
RunWait("tmpBatFile.cmd")
ConsoleWrite("Done" & @CRLF)

Tested on Win2000/XP 32-bit with all service packs. Also with AutoIt beta 3.2.13.3. The problem does not exist when compiled under v3.2.10.0 (with a compatible version of AutoIt3Wrapper).

Don't think it's a problem with the keyboard buffer, because on a different script that waits for user input via a batch file, I get an error like there was no input, whereas run on its own (from a cmd prompt) the batch file doesn't error even if you just hit return without any input.

Note: See TracQuery for help on using queries.