I use the EHS Helprouter component to implement HTML help calls, after upgrading from D4 to D7 I noticed context sensitive help wasnt working anymore, and managed to get this fix from EHS they had changed the implementaion for D7
from ths
to
I just (after some time) noticed that context help calls from Message Dialogs are not working any more!
I assume its due to the same problem but cannot see a way round it.
Other than a work around using somthing like the line above if the dialog returns MrHelp.
Steve: Delphi a feersum engin indeed.
from ths
Code:
helprouter1.HelpContext((sender as tspeedbutton).tag);
to
Code:
Application.HelpCommand(HELP_CONTEXT, (sender as tspeedbutton).tag);
I just (after some time) noticed that context help calls from Message Dialogs are not working any more!
I assume its due to the same problem but cannot see a way round it.
Other than a work around using somthing like the line above if the dialog returns MrHelp.
Steve: Delphi a feersum engin indeed.