Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Loop through Accessible Item List?
#2
once you have the captured acc object 
insert this after that code
Code:
Copy      Help
ARRAY(Acc) c; int i
a.GetChildObjects(c -1 "LISTITEM" "" "" 16)
for i 0 c.len
,out c[i].Name

example full code below
This is just a basic example of a form that has a combobox.
It wont work with the window your using but is included to show full example code
Code:
Copy      Help
int w=win("Form" "#32770")
Acc a.Find(w "COMBOBOX" "" "" 0x14 3)
ARRAY(Acc) c; int i
a.GetChildObjects(c -1 "LISTITEM" "" "" 16)
for i 0 c.len
,out c[i].Name


Messages In This Thread
Loop through Accessible Item List? - by pctechtv - 06-13-2021, 09:28 PM
RE: Loop through Accessible Item List? - by Kevin - 06-14-2021, 04:31 AM
RE: Loop through Accessible Item List? - by r0n - 06-19-2021, 07:30 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)