is there any e.SuppressKeyPress option in UltraWinGrid Properties instead of Writing codes which will reduce writing back end code or just like suppress key option
no Mike i have achived my goal by doing this
If e.KeyCode = Keys.Up Or e.KeyCode = Keys.Down Then e.SuppressKeyPress = TrueEnd If
i just wanted to know if there is any options available with the control property , if not it is ok ,thanks for u response mike(u r the best)
I know of no control that has a property to turn off the handling of certain key strokes generically.
You can either use the KeyActionMappings of the grid, or handle the KeyDown event, or use the BeforePerformAction event.