Hi,
Considering a control with a list of clickable items present only as Visible Text Strings, can you click one of those elements?
Window Info cannot select anything from that list, just the container.
What I have now is:
ControlClick($handler, "", "[CLASS:TRzComboBox; INSTANCE:1]");
Which expands the combo box. I can also expand it with:
ControlCommand($handler, "", "[CLASS:TRzComboBox; INSTANCE:1]", "ShowDropDown","");
Then:
ControlCommand($handler, "", "[CLASS:TRzComboBox; INSTANCE:1]", "SelectString", "SomeItem");
Which doesn't do anything, unfortunately for me.