the Ctrl+Backspace
keyboard shortcut normally deletes the word to the left from the caret. But it does not work in any of the standard Delphi controls you would expect (TEdit
, TMemo
, TComboBox
ect.). Interestingly, Ctrl+Delete
works just fine.
Does anybody know how to correct this behaviour easily?
I know that overriding the KeyDown
procedure would do it, but this is a rather too complicated as KeyDown
has to be overridden for every component.