How to process arrow keys?

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

    How to process arrow keys?

    How to process arrow keys?
    Hello
    I need to catch arrow keys down event
    from control derivied from usercontrol

    -OnKeyDown method seems to work for all
    keys besides arrow keys
    -however OnKeyUp method works just fine for them
    - OnKeyDown works when i press
    arrowkeys + modifiers keys like CTRL,
    so could anybody
    point me something helpfull ....
    thanks
  • rollasoc

    #2
    Re: How to process arrow keys?

    ProcessCmdKey(r ef Message msg, Keys keyData)

    or ProcessDialogKe y()

    Hope that helps

    rollasoc





    "bj" <anonymous@disc ussions.microso ft.com> wrote in message
    news:083201c39e bd$7e7796c0$a30 1280a@phx.gbl.. .[color=blue]
    > How to process arrow keys?
    > Hello
    > I need to catch arrow keys down event
    > from control derivied from usercontrol
    >
    > -OnKeyDown method seems to work for all
    > keys besides arrow keys
    > -however OnKeyUp method works just fine for them
    > - OnKeyDown works when i press
    > arrowkeys + modifiers keys like CTRL,
    > so could anybody
    > point me something helpfull ....
    > thanks[/color]


    Comment

    Working...