Custom Query
Results (43 - 45 of 3870)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#130 | Fixed | _GUICtrlListView_InsertGroup incorrect parameters order in the docs | Gary | MsCreatoR |
Description |
Description in the help file for _GUICtrlListView_InsertGroup function have small typo (incorrect order in the parameters). It sais: Parameters $hWnd Handle to the control $iIndex Index where the group is to be added. If this is -1, the group is added at the end of the list. $sHeader Header text $iGroupID ID of the group $iAlign Alignment of the header text for the group:
But the $sHeader and $iGroupID needs to be switched, due to syntax descriptions (and the function's work of course): _GUICtrlListView_InsertGroup($hWnd, $iIndex, $iGroupID, $sHeader[, $iAlign = 0]) |
|||
#141 | No Bug | _GUICtrlToolbar_ClickButton is documented but does not exist | Gary | junkew@… |
Description |
_GUICtrlToolbar_PressButton has a reference to click in remarks but the UDF _GUICtrlToolbar_ClickButton does not exist Remarks This function does not fire the click event on dropdown style buttons. You should use the _GUICtrlToolbar_ClickButton function if you want to ensure that the button click event is fired, regardless of the button style. |
|||
#172 | Fixed | StructureConstants.au3 - $tagREBARINFO | Gary | Zedna |
Description |
Global Const $tagREBARINFO = DllStructCreate("uint cbSize;uint fMask;hwnd himl") should be Global Const $tagREBARINFO = "uint cbSize;uint fMask;hwnd himl" It's used in GuiReBar.au3 --> Func _GUICtrlRebar_GetBarInfo($hWnd) ... Local $tINFO = DllStructCreate($tagREBARINFO) ... |