I guess you have Table Box() with Col Box filled with Combo Boxes. Below are some ideas you could try:
Names Default To Here(1);
nw = New Window("",
tb = Table Box(
cb = Col Box("select",
Combo Box({"a", "b", "c"}),
Combo Box({"a", "b", "c"}),
Combo Box({"a", "b", "c"}),
Combo Box({"a", "b", "c"}),
Combo Box({"a", "b", "c"})
)
)
);
cb << Get; //won't work as it returns list with empty values
cb << Get Text; // could use this and parse result
cb[1] << get selected; // this should work, so you could loop over elements or get references to a list
(cb << XPath("//ComboBox")) << get selected; // my preferred method use XPath to get references and then << get selected for values
-Jarmo