Custom Query (3931 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (415 - 417 of 3931)

Ticket Resolution Summary Owner Reporter
#2915 Fixed Map Memory Leak Jon Mars (AutoIt.de)
Description
Global $Map[], $aArray[1], $Timer = TimerInit()

While TimerDiff($Timer) < 5000
	$Map.Label = 5
	$aArray[0] = $Map
WEnd
#2916 Fixed GUISetCoord() and GUICtrlCreatePic() Jon Synix <cross.fire@…>
Description

The width and height parameter of GUISetCoord() don't affect GUICtrlCreatePic(). See:

#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>

Opt("GUICoordMode", 2)
GUICreate("")
GUISetCoord(25, 25, 75, 75)
GUICtrlCreateEdit("", -1, -1)
GUICtrlCreateLabel("", 10, -1, -1, -1, $SS_SUNKEN)
GUICtrlCreatePic("", 10, -1, -1, -1, $SS_SUNKEN)
GUISetState()

Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE

All controls should have the same size.

#2938 Fixed Add "GetCount" to ControlCommand() Jon anonymous
Description

Please add command "GetCount" to ControlCommand() function for ListBox and ComboBox items count. Thanks.

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