hey genial Karcrack lo tomare como alternativa vere que otros metodos habra me has motivado xD... Salu2 y thankz
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúCita de: Karcrack en 12 Febrero 2010, 23:35 PM
Lo he probado en W$ XP SP3, a ver si alguien puede probarlo en otro W$
Private Sub Command1_Click()
Label1.Caption = "abajo"
End Sub
Private Sub Label1_Change()
If Label1.Caption = "abajo" Then
Timer1.Enabled = True
End If
End Sub
Private Sub Timer1_Timer()
SendKeys "{down}"
End Sub
Private Sub Label1_Change()
If Label1.Caption = "izquierda" Then
MsgBox "Cambio a izquierda"
ElseIf Label1.Caption = "derecha" Then
MsgBox "Cambio a derecha"
End If
End Sub
Private Sub Command1_Click()
Dim x As Integer
For x = 0 To List1.ListCount
If List1.List(x) = "dedo" Then
MsgBox "Aki Toy"
End If
Next x
End Sub