
22/01/2007, 17:53
|
| | Fecha de Ingreso: abril-2004
Mensajes: 192
Antigüedad: 21 años Puntos: 0 | |
Re: Ayuda con pulsaciones de teclas podés usar un timer y la función sendKey si te entendi bien
Private Sub Form_Load()
Timer1.Interval = 50
End Sub
Private Sub Timer1_Timer()
SendKeys ("{A}")
End Sub
saludos |