views:

62

answers:

1

Shortcut-handling module of my application contains some sort of 'global' hotkeys, that are linked to their own actions in action list in TDataModule. I did so, because it is part of shortcut persistence and editing system I have. So, any TAction I add into some form/frame/datamodule of my application will be processed and viewed in shortcut editing interface and then properly saved.

So, all works, except that TActions, that placed in TDataModule, do not renpond to hot keys :/

+1  A: 

It can't handle shortcuts by design. So, I implemented shortcut-handling behaviour in it, because I think that changing TDataModule to some TCustomForm descendant and deal with sorta invisible form is lame.

Max