Custom Query (3927 matches)
Results (412 - 414 of 3927)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1325 | Fixed | Date.au3: calls to _Date_Time_SetLocalTime($pSystemTime) are not checking @error | ||
| Description |
In Date.au3, there are several function that call _Date_Time_SetLocalTime() and do not check for @error. They expect the function to always return an array and then try to reference index 0 which generates an exception. Here is the last two lines of _SetDate()
|
|||
| #1327 | Fixed | F1 in Scite Does Not Open Help File for Some Keywords | ||
| Description |
For some keywords, the help file is not opened via F1 in Scite (with Scite4AutoIt3 installed). Examples of broken keywords: Send ConsoleWrite StringRegExp |
|||
| #1328 | Fixed | StringFormat() does not produce right output in AutoIt v3.3.1.6 (beta) | ||
| Description |
There appears to be a bug in the StringFormat() function in the Beta release. I first noticed it in v3.3.1.1 (beta), but it's still there in the latest Beta: v3.3.1.6 (beta). It works fine in the stable release v3.3.0.0 Here's an example: C:\AutoIt_Tests>type _testStringFormat.au3 #include <Debug.au3>
$i=0
While $i < 10
$iString=StringFormat("%005s", $i)
ConsoleWrite("$i: " & $i & " ===> " & $iString & @LF )
$i=$i+1
WEnd
ClipPut(_DebugBugReportEnv())
ConsoleWrite(_DebugBugReportEnv())
C:\AutoIt_Tests>C:\PROGRA~1\AUTOIT~2.0\Beta\Aut2Exe\Aut2exe.exe /in _testStringFormat.au3 /console C:\AutoIt_Tests>_testStringFormat.exe
It works fine in the stable release: C:\AutoIt_Tests>C:\PROGRA~1\AUTOIT~2.0\Aut2Exe\Aut2exe.exe /in _testStringFormat.au3 /console C:\AutoIt_Tests>_testStringFormat.exe
'C:\PROGRA~1\AUTOIT~2.0\Beta\Aut2Exe\Aut2exe.exe' is
'C:\PROGRA~1\AUTOIT~2.0\Aut2Exe\Aut2exe.exe' is
Same result in Scite:
|
|||
