listbox additems
Hello!
i'm populating my listbox with a "select" statement that retrieves me informaton to fill up multiple columns, but this information stays completely mixed in the listbox. i'm using this code:
While Not rs_nomes.EOF
list_result.AddItem rs_nomes(0).Value, 0
list_result.AddItem rs_nomes(1).Value, 1
list_result.AddItem rs_nomes(2).Value, 2
list_result.AddItem rs_nomes(3).Value, 3
list_result.AddItem rs_nomes(4).Value, 4
list_result.AddItem rs_nomes(5).Value, 5
rs_nomes.MoveNext
Wend
how can put the information by columns?
thanks
|