|
-
Aug 17th, 2012, 06:01 PM
#1
Thread Starter
Addicted Member
[RESOLVED] Function Keys
hi friends ,in order my application more friendly and let user use keyboard instead of mouse
I used below code;
Private Sub Form_KeyPress(KeyAscii As Integer)
If KeyAscii = 97 Or KeyAscii = 65 Then
Button1_Click
End If
end sub
so when user presses "a" or "A" it's like as if he has clicked on button1.this piece of code works well,now my question is how can I replace "a" with a function key as
F1 for example?it seems they dont have it (or they do??)
thank you so much
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|