BLeslie88
B Leslie
- Local time
- Today, 03:09
- Joined
- May 9, 2002
- Messages
- 228
I searched to no avail.
I want to make a shortcut. Keydown.... but anywhere on the form..
I have tried Form_AfterUpdate()
Private Sub Form_KeyPress(KeyAscii As Integer)
If KeyAscii = "myutest" Then
cmdSendMail.SetFocus
End If
End Sub
would be the ideal place ... I first need to get into the sub, which at this time doesn't happen.
why am I doing this. idiots using program, lazy people using it.
when they press "end" on keyboard I want to goto cmdSendMail. regardless of where the are on form...
any ideas...???
I want to make a shortcut. Keydown.... but anywhere on the form..
I have tried Form_AfterUpdate()
Private Sub Form_KeyPress(KeyAscii As Integer)
If KeyAscii = "myutest" Then
cmdSendMail.SetFocus
End If
End Sub
would be the ideal place ... I first need to get into the sub, which at this time doesn't happen.
why am I doing this. idiots using program, lazy people using it.
when they press "end" on keyboard I want to goto cmdSendMail. regardless of where the are on form...
any ideas...???