Custom Query (3931 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


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 Jpm anonymous
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) Jos anonymous
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 False--> SetHotKey Restart failed, SetHotKey Stop failed. is annoying... 😒

#4031 Fixed Calling _DebugArrayDisplay after calling _ArrayDisplay will disable the buttons of _DebugArrayDisplay Jpm anonymous
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 😆

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