Jump to content

Recommended Posts

Posted

I would like to query an application about 3 checkboxes status. The Info tool tells me it's a listbox.

post-59882-0-04156000-1370908379_thumb.p

>>>> Control <<<<
Class:    ListBox
Instance:    1
ClassnameNN:    ListBox1
Name:    
Advanced (Class):    [CLASS:ListBox; INSTANCE:1]
ID:    1008

 

..but as far as I can see, only listView may have checkboxes on items ?

 

I can get a handle for the control: this returns no error.

    $listboxHandle = ControlGetHandle($winTitle, "", "[CLASS:ListBox; INSTANCE:1]")
    If @error = 1 Then
        ConsoleWrite("ERROR GETTING LISTBOX" & @CRLF)
    Else
        ConsoleWrite("Handle for listbox: " &  $listboxHandle & @CRLF)
    EndIf

 

But there is no way I can get it to read out correct status. Tried both with code for listbox and listview, no result.

Any suggestions ? Or do I simply have a non-native control here ?

 

  Reveal hidden contents

I am just a hobby programmer, and nothing great to publish right now.

Posted

There might be nested controls that Au3Info isn't detecting. Use WinSPY++. If you were lucky enough you would find the underlying windows that could be used to get the state of the checkbox.

BTW: which application are you using ?

My code:

  Reveal hidden contents
PredictText: Predict Text of an Edit Control Like Scite. Remote Gmail: Execute your Scripts through Gmail. StringRegExp:Share and learn RegExp.

Run As System: A command line wrapper around PSEXEC.exe to execute your apps scripts as System (LSA). Database: An easier approach for _SQ_LITE beginners.

MathsEx: A UDF for Fractions and LCM, GCF/HCF. FloatingText: An UDF for make your text floating. Clipboard Extendor: A clipboard monitoring tool. 

Custom ScrollBar: Scroll Bar made with GDI+, user can use bitmaps instead. RestrictEdit_SRE: Restrict text in an Edit Control through a Regular Expression.

Posted

Wow, that WinSpy is pretty detailed. Nice find.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

@Phoenix: it's a label design software. I have a number of layouts I would like to re-purpose for other layout programs, so I need to get properties of the different text strings, as the dumb software has no export function other than previous versions of the same. And no API.

I will try the WinSpy++ as suggested. Thank you.

  Reveal hidden contents

I am just a hobby programmer, and nothing great to publish right now.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...