Using 'Function Keys' In vb.net

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
 
N

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
 
H

Herfried K. Wagner [MVP]

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top