Possible to change a single value in a string col box() list?
Hi. I'm wondering if there's a way to update a single item in a string col box()? For example, is there a command like:scb = StringColBox("title", mylist);
scb << Set Item(i, "newvalue"); //is there a cmd like this?
I have a window with a string col box, and I would like my script to update a single value. My current method:1. Get the entire list from the string col box2. Modify the list3. W...