Listbox que seleccione el item que yo elija
Para Dante Amor
Tengo un listbox que para llevar a cabo la eliminación a fuerza me pide seleccionar el primer item.
Quisiera un código que me permita seleccionar cualquier item del listbox.
Es que el codigo lo tengo a si por que si presiono el boton sin seleccionar me selecciona el primero entonces quiero saber como puedo hacerle .
For x = 0 To ListBox1.ListCount - 1
ListBox1.ListIndex = True
txt1 = ListBox1.List(x, 2)
txt2 = ListBox1.List(x, 3)
TXTTALLE = ListBox1.List(x, 4)
TXTCOLOR = ListBox1.List(x, 5)
TXT5 = ListBox1.List(x, 6)
txt3 = ListBox1.List(x, 7)
TXTSU = ListBox1.List(x, 9)
Next
If ListBox1.Selected(Index) = True Then
ListBox1.RemoveItem (ListIndex)
End If
txt1.Text = Empty
txt2.Text = Empty
TXTTALLE.Text = Empty
TXTCOLOR.Text = Empty
TXT5.Text = Empty
txt3.Text = Empty
txt22.Text = Empty
TXTSU.Text = Empty
Exit Sub
Sin más por el momento agardezco tu atención.