Necesito utilizar un list box que tenga dos columnas, cómo se define que tenga dos columnas y que obtenga diferente información en cada una? Ahorita tengo una sola y este código me permiterecorrer el list box y borrarel elemento seleccionado:
Private Sub btnBorrar_Click()
Dim items As Integer
items = LstListaPeliculas.ListCount - 1
Dim n As Integer
For n = items To 0 Step -1
If LstListaPeliculas.Selected(n) Then
LstListaPeliculas.RemoveItem (n)
End If
Next
End Sub
Gracias por su ayuda.