I have tried to solve my problem about listbox for many hours but I didn't solve it yet.
the problem is when I select the first item on listbox 1 (blocked by blue colour), I wanted at the same time, the first item on ListBox2 and ListBox 3 are selected and blocked by blue colour too.
These the codes :
tbSel = ListBox.GetSelected("L1");
if tbSel then
ListBox.GetSelected("L2",tbSel[1]);
ListBox.GetSelected("L3",tbSel[1]);
end

Reply With Quote
