multiselect

21/10/2004 - 20:35 por Serafin Caballero | Informe spam
how i, select more one items of a listbox?
for pass to other listbox

Help´please
 

Leer las respuestas

#1 htb
21/10/2004 - 22:17 | Informe spam
One:

In ListBox1 (set Property)
ListBox1.SelectionMode = MultiExtended

Two:
(for pass to other listbox)

Dim i As Long
For i = 0 To ListBox1.SelectedItems.Count - 1
ListBox2.Items.Add(ListBox1.SelectedItems(i))
Next


how i, select more one items of a listbox?
for pass to other listbox

HelpÂŽplease
.

Preguntas similares