Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (16 - 18 of 3866)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Ticket Resolution Summary Owner Reporter
#1720 Rejected adding functionality to GUICtrlSetImage ynbIpb
Description

Hello! I beg you to realize the possibility of using binary data as a function GUICtrlSetImage. Example: Now the function uses the image file: GUICtrlSetImage (controlID, @ ScriptDir & "\ image.jpg") I want this: $ HImageFile = FileOpen (@ ScriptDir & "\ image.jpg", 16); binary mode $ BImageData = FileRead ($ hImageFile); binary data GUICtrlSetImage (controlID, $ bImageData) Thank you.

#1180 Fixed _Date_Time_GetTimeZoneInformation Returned Values Jpm yn0t <spinxkx@…>
Description

In the documentation of _Date_Time_GetTimeZoneInformation it states that elements [3] & [6] returns a $tagSYSTEMTIME date and time of when Daylight Savings time starts/ends. This should probably be clarified.

The returned value is not an actual date. It represents which Sunday the change over takes place. For example after the following is run.

$TimeZone = _Date_Time_GetTimeZoneInformation() $array = _Date_Time_SystemTimeToArray($TimeZone[6])

$array[0] will equal 3 (March) and $array[1] will equal 2. The 2 represents the second Sunday (which is March 8th, 2009 this year). It does not represent March 2nd.

#1165 Fixed _GUICtrlComboBoxEx_AddString as 64bit Script yetrael@…
Description

This piece of Code crashes when compiled as x64 script, on x86 everythiung works fine:

#include <GuiComboBoxEx.au3>
#include <GuiConstantsEx.au3>

$Debug_CB = True ; Check ClassName being passed to ComboBox/ComboBoxEx functions, set to True and use a handle to another control to see it work

$hGUI = GUICreate("ComboBoxEx Add String", 400, 300)
$hCombo = _GUICtrlComboBoxEx_Create($hGUI, "", 2, 2, 394, 100)
GUISetState()

_GUICtrlComboBoxEx_BeginUpdate($hCombo)
_GUICtrlComboBoxEx_AddString($hCombo, "Work")
_GUICtrlComboBoxEx_AddString($hCombo, "Game")
_GUICtrlComboBoxEx_AddString($hCombo, "Crash")
_GUICtrlComboBoxEx_EndUpdate($hCombo)

Do
    Sleep(50)
Until GUIGetMsg() = $GUI_EVENT_CLOSE

Scite ouput gives this:

>Running:(3.3.1.1):C:\Program Files\System und Tools\AutoIt\beta\autoit3_x64.exe "C:\Program Files\System und Tools\Shell Extension\SysControl\64bit\Problem.au3"    
!===========================================================
+======================================================
-->Line(0182):  This is for debugging only, set the debug variable to false before submitting
+======================================================
!===========================================================
+======================================================
-->Line(0182):  This is for debugging only, set the debug variable to false before submitting
+======================================================
!===========================================================
+======================================================
-->Line(0182):  This is for debugging only, set the debug variable to false before submitting
+======================================================
!===========================================================
+======================================================
-->Line(0182):  This is for debugging only, set the debug variable to false before submitting
+======================================================
!>10:46:04 AutoIT3.exe ended.rc:-1073740771
+>10:46:06 AutoIt3Wrapper Finished
>Exit code: -1073740771    Time: 1.799
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Note: See TracQuery for help on using queries.