In Embarcadero Delphi XE7, I use a component which has a help-button. In the component (which shows a message dialog), I specify a help context number. If the user clicks on the button, the help should show, but I get an error instead:
Project ... raised exception class $C00000FD with message 'stack overflow at 0x006f089e'.
The command executed when the user clicks on the button is:
Application.HelpContext(HelpContextNumber);
On Launch HTML Help as Separate Process, I read that I should attach an OnHelp
event handler to the Application object.
I saved the Help unit but how do I attach it?
Application.OnHelp := ....?