Custom Query
Results (139 - 141 of 3872)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#140 | Completed | Add ToolbarWindow32 information on buttons | Jpm | junkew@… |
Description |
Would be nice if buttons on toolbar windows are recognized or at least some initial information can be spyed on. Some (partial) code like below retrieves some usefull information Code acts now on wordphrase like Toolbar but can imagine trigger should be something less classname dependent. (Class tested on = ToolbarWindow32) if stringinstr($sClassname,"Toolbar") > 0 Then $tbCount = _GUICtrlToolbar_ButtonCount($hWnd) for $i=0 to $tbcount -1 ;Determine rectangle and check matching area $aRect = _GUICtrlToolbar_GetButtonRect ($hWnd, _GUICtrlToolbar_IndexToCommand($hWnd, $i)) $mPos=mousegetpos() $wPos=wingetpos($hWnd) if (($mPos[0] - $wPos[0]) > $arect[0] ) and (($mPos[0] - $wPos[0]) < $arect[2] ) _ And (($mPos[1] - $wPos[1]) > $arect[1] ) and (($mPos[1] - $wPos[1]) < $arect[3] ) Then $tbText = "[Index: " & $i & _ " CommandID: " & _GUICtrlToolbar_IndexToCommand($hWnd, $i) & _ " text: " & _GUICtrlToolbar_GetButtonText($hWnd, $i) & " ]" endif next endIf Wishes "Must"
"Should"
|
|||
#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. |
|||
#142 | Duplicate | Get Array from LDAP-Field | anonymous | |
Description |
When the Function _ADGETObjectInOU from ADFunctions.au3 Version 3.1.2 get an Aray as Answer nothing is displayed. If you add this lines, they are displayed If isarray($objRecordSet.Fields ($dtrArray[$i]).Value) Then
Else
EndIf |