
21/01/2009, 11:36
|
 | | | Fecha de Ingreso: febrero-2007 Ubicación: Esperanza, Santa Fe
Mensajes: 1.046
Antigüedad: 18 años, 2 meses Puntos: 19 | |
Respuesta: Como ponerle el foco a un item del list
Código:
Private Sub Command1_Click()
If List1.ListIndex = List1.ListCount - 1 Then
MsgBox "Llegaste al final...", vbInformation
Else
List1.ListIndex = List1.ListIndex + 1
End If
End Sub
__________________ " Todos Somos Ignorantes; lo que pasa es que no todos ignoramos las mismas cosas " - Albert Einstein |