Advertisement
Guest User

Untitled

a guest
Feb 9th, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.29 KB | None | 0 0
  1. #include <GUIListView.au3>
  2. #include <Array.au3>
  3.  
  4. $listview = ControlGetHandle("Windows Task Manager", "", "[CLASS:SysListView32;INSTANCE:1]")
  5. If $listview Then
  6.     For $i = 0 To _GUICtrlListView_GetItemCount($listview) - 1
  7.         _ArrayDisplay(_GUICtrlListView_GetItem($listview, $i))
  8.     Next
  9. EndIf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement