Custom Query (3931 matches)
Results (55 - 57 of 3931)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #4033 | Fixed | When calling _DateTimeSplit with a string with date only, the returned $aTimePart[0] value is missing | ||
| Description |
Simple fix, from Else Dim $aTimePart[4] EndIf to Else Dim $aTimePart[4] $aTimePart[0] = 0 EndIf If no one figures this out in these many years, I think this is not important, but just to be consistent with the help file... 😄 |
|||
| #4032 | No Bug | Unwanted debug output from running scripts in SciTE (from autoit3_x64.exe) | ||
| Description |
Open an empty .au3 in SciTE, run it with F5, then see the console output below: >"D:\Program Files\AutoIt\SciTe\..\AutoIt3.exe" "D:\Program Files\AutoIt\SciTe\AutoIt3Wrapper\AutoIt3Wrapper.au3" /run /prod /ErrorStdOut /in "X:\empty.au3" /UserParams +>22:47:33 Starting AutoIt3Wrapper (21.316.1639.1) from:SciTE.exe (4.4.6.0) Keyboard:00000409 OS:WIN_10/2009 CPU:X64 OS:X64 Environment(Language:0404) CodePage:0 utf8.auto.check:4 +> SciTEDir => D:\Program Files\AutoIt\SciTe UserDir => D:\Program Files\AutoIt\SciTe\AutoIt3Wrapper >Running AU3Check (3.3.16.1) from:D:\Program Files\AutoIt input:X:\empty.au3 +>22:47:35 AU3Check ended.rc:0 >Running:(3.3.16.1):D:\Program Files\AutoIt\autoit3_x64.exe "X:\empty.au3" False--> SetHotKey Restart failed, SetHotKey Stop failed. +>22:47:36 AutoIt3.exe ended.rc:0 +>22:47:36 AutoIt3Wrapper Finished. >Exit code: 0 Time: 6.278
This line |
|||
| #4031 | Fixed | Calling _DebugArrayDisplay after calling _ArrayDisplay will disable the buttons of _DebugArrayDisplay | ||
| Description |
#include <Array.au3> #include <Debug.au3> Local $array = [1, 2, 3] _DebugArrayDisplay($array) ; With buttons _ArrayDisplay($array) ; Without buttons _DebugArrayDisplay($array) ; Without buttons I think the reason is the _ArrayDisplay passes a "0" as the $hUser_Function parameter to _ArrayDisplay_Share, which causes $_g_ArrayDisplay_bUserFunc to True, then it causes the $bDebug to be False at the later call to _DebugArrayDisplay... It must be that, unless it is not that 😆 |
|||
