I need to use F10 button to my program (completely), but it seems to be windows default button to activate menu. Is there any way to disable this
adjustment?
Thank you
Printable View
I need to use F10 button to my program (completely), but it seems to be windows default button to activate menu. Is there any way to disable this
adjustment?
Thank you
You might be able to do it by using this tip;
http://www.vb-world.net/mouse/tip80.html
to create F10 as a hotkey for your application.
?
From what I gather the original button for that is the space bar. Once space is assigned it switches to something else...and so on and so on. Just assign the F10 key to do something else like this:
If KeyCode = vbKeyF10 Then KeyCode = 65
' Reassigns the KeyCode to something else
If KeyCode = vbKeyA Then
Print "Bob"
End If
That should work.