Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (115 - 117 of 3866)

Ticket Resolution Summary Owner Reporter
#733 Fixed Docs mistake in _GUICtrlButton_SetImage/List() Gary MrCreatoR
Description

The description of _GUICtrlButton_SetImage/List() sais this:

Sets the check state of a radio button or check box

But as i see it, should be something like this:

Sets the image(list) for the specified button

:)

This mistake is also found in the SciTE's calltips, and also in the docs of the function itself (the same in _GUICtrlButton_SetImage, and in the _GUICtrlButton_SetImageList UDF).

Thanks.

#739 Works For Me _GUICtrlTreeView_SetInsertMark with $hItem=0 does not remove the insertion mark Gary j0linus
Description

Instead of removing the insertion mark, it is set above/below the first TreeviewItem.

i think reason for this:

If Not IsHWnd($hItem) Then $hItem = _GUICtrlTreeView_GetItemHandle($hWnd, $hItem)

so resolution would be:

If Not IsHWnd($hItem) AND $hItem<>0 Then $hItem = _GUICtrlTreeView_GetItemHandle($hWnd, $hItem)

By the way i noticed that the check for a valid Treeview handle should be done before the check for a valid TreeItem handle.

Result:

If Not IsHWnd($hWnd) Then $hWnd = GUICtrlGetHandle($hWnd)
If Not IsHWnd($hItem) AND $hItem<>0 Then $hItem = _GUICtrlTreeView_GetItemHandle($hWnd, $hItem)
#773 Fixed _GUICtrlStatusBar_SetParts() - badly documented parameters Gary Zedna
Description

C:\Program Files\AutoIt3\UDFs3.chm::/html/libfunctions/_GUICtrlStatusBar_SetParts

_GUICtrlStatusBar_SetParts($hWnd[, $iaParts = -1[, $iaPartWidth = 25]])

There are 3 parameters but in table of parameters in CHM helpfile there are documented only 2. Second and third ones are mixed together.

$hWnd Handle to the control 

$iaParts Number of parts, can be an zero based array of ints in the following format:
$iaParts[0] - Right edge of part #1
$iaParts[1] - Right edge of part #2
$iaParts[n] - Right edge of parn n

Note: See TracQuery for help on using queries.