setting values in a multiselect listbox

J

Jesper Fjølner

As I've understood the "itemsselected"-collection of a multiselect listbox
is read only is that correct?
I'd like to be able to store the selection for later use, say in a small
string like 1,4,7,11,12 indicating what values were selected.
Is there a way to programmatically select those those certain rows a later
point in time?
If not are there alternatives?
Thanks.
 
J

Jesper Fjølner

Is there a way to programmatically select those those certain rows a later
point in time?

Got it working with : Me!lstbox.selected(rownumber)=True
 
Top