Using 'Function Keys' In vb.net

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Newbie

    Using 'Function Keys' In vb.net

    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

  • Newbie

    #2
    Re: Using 'Function Keys' In vb.net

    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

    Comment

    • Herfried K. Wagner [MVP]

      #3
      Re: Using 'Function Keys' In vb.net

      "Newbie" <laporte1@chart er.net> schrieb:[color=blue]
      > 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.[/color]


      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.

      --
      M S Herfried K. Wagner
      M V P <URL:http://dotnet.mvps.org/>
      V B <URL:http://classicvb.org/petition/>

      Comment

      Working...