Using 'Function Keys' In vb.net

  • Thread starter Thread starter Newbie
  • Start date Start date
N

Newbie

Could someone help:

I have been searching the web trying to figure out a way to use
function key's in my vb.net 2003 program (No luck!). What I would like
to do is enable the user to press (for example) F4 and have a search
dialog window come up. Or press 'Up' & 'Down' arrow's to toggle
between two radio buttons?


Thanks


Newbie
 
Sorry people, this was a learning lesson for me. I used www.google.com
to search for everything I could think of to find info on using
function keys in vb.net 2003 and came up empty. But when I searched in
this news group I found exactly what I was looking for.

Please disregard the previous post

Thanks
 
Newbie said:
Sorry people, this was a learning lesson for me. I used www.google.com
to search for everything I could think of to find info on using
function keys in vb.net 2003 and came up empty. But when I searched in
this news group I found exactly what I was looking for.


For completeness:

There are basically two solutions:

Add a mainmenu control to the form and create menu items. Assign shortcuts
to the menu items and handle the items' 'Click' events. Note that the menu
items and the menu bar do not need to be visible to make the accelerator
keys work.

- or -

Set the form's 'KeyPreview' property to 'True' and check 'e.KeyCode' in the
form's 'KeyDown' event handler.
 
Back
Top