Jump to content

Search the Community

Showing results for tags 'listview get text'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. 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.
×
×
  • Create New...