Private Sub LstJugadores_DblClick()
Dim i As Integer
Dim Bandera As Boolean
Bandera = True
For i = 0 To LstAlineacion.ListCount - 1
If LstJugadores.Text <> LstAlineacion.List(i) & Bandera = True Then
LstAlineacion.AddItem LstJugadores.Text
LstJugadores.RemoveItem LstJugadores.ListIndex
Bandera = False
End If
Next i
End Sub