MultiSelection in Listbox

Hi,
in Xojo’s Listbox, is it possible to select the row in multi selection?

I have a data ,

column0 column 1 001 Orange 001 Orange 002 Carrot 003 Kiwi 003 Kiwi 003 Kiwi

So, when the user click rows with value ‘001’ in column 0, both rows should be selected, and so on.

any helps ?

thanks
regards,
arief

http://documentation.xojo.com/api/deprecated/listbox.html#listbox-selected

I have set the listbox type into Multiselect, but still not working

[code]For i As Integer = 0 To ListBox1.ListCount - 1

if Listbox1.Cell(0,i)=“001” then
ListBox1.Selected(i) = True
Listbox1.setfocus
end if

Next[/code]

when it run on IDE, shows no error, but dont work ;(

thanks
arief

if Listbox1.Cell(i,0)="001" then

ah…
my mistake, i didnt realize.

thanks
arief