Forum Discussion
Vallalarasu_P
7 years agoFrequent Contributor
Try using FindallChildren and read the Name or Values of the dropdown exist, Which will give a better understanding of the development structure.
Function ReadItemsCombobox
set calObj=Sys.YourDesktopApp.
PropArray = Array(“Class”)
ValuesArray = Array(“combobox”)
ComboListItems =calObj.findAll(PropArray,ValuesArray,30,true)
Log.Message(“Count :” & UBound(ComboListItems ))
for each xin ComboListItems
Log.Message(x.Name)
next
End Function