Jump to content

Search the Community

Showing results for tags 'AFX'.

  • 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. http://www.aptuner.com/ftp/apmain/APTunerInstall308.exe The above is a link to the application I'm attempting to automate. AutoIt Window Info reveals 3 controls of Class "AfxWnd80s" that I suspect are Windows on their own. I am attempting to get handles to them and extract a class list (though I'm not exactly sure this is the way to go around it): $subwinhandle returned is not null (for i={1,3} - AfxWnd80s1 has no ID in AutoIt Window info, Ctrl_ID(AfxWnd80s2)=1, Ctrl_ID(AfxWnd80s3)=3 ), but WinGetClassList does not return anything for i={1,2,3} I'm attempting to read some text from AfxWnd80s2 (Text below Cents and Note) in the area denoted 2 in the screenshot. I'm not even sure this *can* be done, and if the handles returned by GetDlgItem are valid, or even if I'm calling the right function to get them. Any help would be greatly appreciated. Thank you in advance. #include <WinAPI.au3> $h=WinGetHandle("AP Tuner") $x="AfxWnd80s" for $i=1 to 3 $y=ControlGetHandle($h,"","[CLASS:"&$x&"; INSTANCE:"&$i&"]") $subwinhandle=_WINAPI_GetDlgItem($h,$i) $z=_WinGetClassList($subwinhandle) MsgBox(0,$subwinhandle,$z) next
×
×
  • Create New...