Custom Query
Results (142 - 144 of 3838)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#495 | Fixed | _GUICtrlTreeView_GetTree returns only 1 parent | Gary | anonymous |
Description |
_GUICtrlTreeView_GetTree sould return the whole treeview-structure for an item, but it returns just the first parent: PARENT|ITEM This happen, because the line
should be
The corrected function: ; #FUNCTION# ==================================================================================================================== ; Name...........: _GUICtrlTreeView_GetTree ; Description ...: Retrieve all items text ; Syntax.........: _GUICtrlTreeView_GetTree($hWnd, $hItem) ; Parameters ....: $hWnd - Handle to the control ; $hItem - item ID/handle ; Return values .: Success - Tree Path of Item ; Failure - Empty string ; Author ........: Gary Frost (gafrost), Holger Kotsch ; Modified.......: Gary Frost (gafrost) ; Remarks .......: Use Opt("GUIDataSeparatorChar", param) to change the separator char used ; If $hItem is 0 then an attempt to use current selected is used ; Related .......: ; Link ..........; ; Example .......; Yes ; =============================================================================================================================== Func _GUICtrlTreeView_GetTree($hWnd, $hItem = 0) If $Debug_TV Then _GUICtrlTreeView_ValidateClassName($hWnd) If $hItem = 0 Then $hItem = 0x00000000 Else If Not IsHWnd($hItem) Then $hItem = _GUICtrlTreeView_GetItemHandle($hWnd, $hItem) EndIf If Not IsHWnd($hWnd) Then $hWnd = GUICtrlGetHandle($hWnd) Local $szPath = "", $hParent, $sSeparator = Opt("GUIDataSeparatorChar") If $hItem = 0x00000000 Then $hItem = _SendMessage($hWnd, $TVM_GETNEXTITEM, $TVGN_CARET, 0, 0, "wparam", "hwnd", "hwnd") If $hItem <> 0x00000000 Then $szPath = _GUICtrlTreeView_GetText($hWnd, $hItem) Do; Get now the parent item handle if there is one $hParent = _SendMessage($hWnd, $TVM_GETNEXTITEM, $TVGN_PARENT, $hItem, 0, "wparam", "hwnd", "hwnd") If $hParent <> 0x00000000 Then $szPath = _GUICtrlTreeView_GetText($hWnd, $hParent) & $sSeparator & $szPath $hItem = $hParent Until $hItem = 0x00000000 EndIf Return $szPath EndFunc ;==>_GUICtrlTreeView_GetTree |
|||
#500 | Fixed | _ChooseColor 64bit problems | Gary | Achilles |
Description |
I just got a 64bit version of Vista and encountered several problems. _ChooseColor does not work. The function return a value as if the user canceled selection even though no sign of the dialog box appears. |
|||
#501 | Fixed | ProcessGetStats | Valik | pedroemiliano@… |
Description |
ProcessGetStats does not work for SYSTEM's username PID's. This also occurs with Network Service and Local Service (I am running the script in admin login) For example : java.exe PID: 288 Username: SYSTEM Stats from this pid are not available. No _arraydisplay of the array. #include <array.au3> $display = ProcessGetStats("288") MsgBox(0, "test", @error) _ArrayDisplay($display, "test") Error result : 0 |