Hello,
In my application, i have ribbon menu etc... and one ultragrid.
I want to check if user press F8 key, to start procedure.
I put the following program on Ultragrid1_keypress events, but it doesn't works.
Thank you for your help and sorry for my weak english.
Hi,
In the keypress or keydown event try code similar to:
If e.KeyCode = Keys.F8 Then
call_method()
End If
it works. But only on KEYDOWN events.
Thank you