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


Reply With Quote
