I`m having trouble getting items text from SysListView32 control, can anyone confirm is this working for you (windows 7 required):
#include <GuiListView.au3>
Test()
Exit
Func Test()
if NOT ProcessExists("resmon.exe") then Run("resmon.exe")
if WinWait("Resource Monitor", "", 5) = 0 Then
MsgBox(0, "error", "window did not show up within 5 sec")
Return 0
EndIf
$hListView = ControlGetHandle("Resource Monitor", "", "[CLASS:SysListView32; INSTANCE:14]")
if @error then
MsgBox(0, "error", "couldnt get the control handle")
Return 0
EndIf
Do ;waiting for the resmon to display list items
Local $listCount = _GUICtrlListView_GetItemCount($hListView)
If NOT WinExists("Resource Monitor") then Return 0
Until $listCount > 0
ConsoleWrite("! total number of items: " & $listCount+1 & @LF)
For $i = 0 to $listCount
ConsoleWrite("> " & $i+1 & " - " & _GUICtrlListView_GetItemText($hListView, $i) & @LF)
Next
EndFunc
I get the number of items, but can't get its txts.
p.s. I searched numerous topics related to SysListView32, but none helped.