11-24-2008, 01:23 PM
As stevol said, these objcoll is a collection of WinButton objects. Here're some of the things you can do with it:
Ask how many are these: objcoll.count
Access a the first of these objects: objcoll.Item(0)
Run through all of them, and highlight them one at a time (of course you can also input them, click them, or anything else):
Ask how many are these: objcoll.count
Access a the first of these objects: objcoll.Item(0)
Run through all of them, and highlight them one at a time (of course you can also input them, click them, or anything else):
Code:
For i = 0 to objcoll.count -1
objcoll.item(i).highlight
Next