Page 1 of 1

Disable shortcut keys (Shift+Delete, Ctrl+X etc.)

Posted: Thu Mar 04, 2010 8:27 am
by kolovan
Hi,

is there any way to disable shortcut keys (Shift+Delete, Shift+Insert, Ctrl+Insert, Ctrl+X, Ctrl+C, Ctrl+V) in RichViewEdit except writing code for OnRichViewEditKeyDown event handler?

Posted: Thu Mar 04, 2010 10:44 am
by Sergey Tkachenko
No. Only using OnKeyDown.
Or Form.OnKeyDown + Form.KeyPreview=True, but it is essentially the same thing.
Or placing menu items or actions with these shortcuts.
But there are no RichViewEdit properties to disable processing these keys.

Posted: Thu Mar 04, 2010 10:50 am
by kolovan
Thank you, Sergey!