F2 Key press
Visual Basic
3
Posts
2
Posters
0
Views
1
Watching
-
Can any one please tell me how to find the keypress of F2.since functional keys dont have ascii values is there any other way..
-
Can any one please tell me how to find the keypress of F2.since functional keys dont have ascii values is there any other way..
You could use KeyDown event. in vb6 you can use the const vbKeyF2 (or its value 113 (&H71))
-
You could use KeyDown event. in vb6 you can use the const vbKeyF2 (or its value 113 (&H71))
thank u its working fine