Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
515
Trap Delete Key
posted

I am having one heck of a time trying to trap the Delete key from an ultracombo...
I have been playing with both the KeyDown and PreviewKeyDown events and I've had great success with all other keys, including stubborn ones like Tab and the arrow keys, even Backspace, but I just can't trap Delete.

I've tried the GetAsyncKeyState function from the User32 Lib (recommended by numerous dev forums for regular MS controls) with no luck...

Anyone have any ideas?

Thanks!

Parents
No Data
Reply
  • 1510
    posted

    Hi !

    How did you trap the **TAB** key on KeyDown inside the UltraCombo ?

    private void _ucTab4Month_KeyDown(object sender, KeyEventArgs e)

    When I push TAB inside the UltraCombo and debug into the KeyDown it gives
    me e.KeyCode = LButton | Back

    and e.KeyData = LButton | Back

    but I was pushing **TAB** ?!?! How can I trap the TAB-button ?

    I need to a certain thing if the user enters TAB inside the UltraCombo ( select the TOP row inside a Grid below it ... which is sorted with filtering, and therefore it's selecting the 2nd row from the bottom )

    rgd,
    EE.

Children