Link to home
Start Free TrialLog in
Avatar of Schmoekel
Schmoekel

asked on

Hlp-call --> Stack overflow

Hello!

I'm working with Delphi 3.0 C/S and Win98 SE. I've problems when calling my hlp-file from a delphi-program. The hlp is 70 kb. Now a bit code from the delphi-help:

procedure TForm1.Button5Click(Sender: TObject);
begin
  Application.HelpFile := 'VCL3.HLP';
  Application.HelpJump('TApplication_HelpJump');
end;

end.

At VCL3.HLP i type in my helpfile. At TApplication_HelpJump i type in the #-footnote from my rtf-file. The first test from within the ide was okay so i put this call in all five forms. Now when activating the help with F1, a button- or a menu-click i always get the message "stack overflow"! Why this? Is there anybody who can explain this to me?
Thanks a lot for your help!!!
Bye Ingo
Avatar of Schmoekel
Schmoekel

ASKER

Adjusted points to 300
ASKER CERTIFIED SOLUTION
Avatar of mscatena
mscatena

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi Mauro,

you're right! I've mixed application-help-calls on the form and on the button ;-)

Thanks a lot!
Ingo