I have help file "help.hap" I add him to app by typing his name in app properti under HelpFile. Then I add

procedure TForm1.Pomoc1Click(Sender: TObject);
begin
Application.HelpContext(0);
end;

But I get error

no context-sensitive help installed

WTF I just add it right?

link|improve this question

52% accept rate
What kind of help file is that? As well as setting the HelpFile property of Application, you need to make sure you have an appropriate help viewer for that type of help file. Do you? – David Heffernan Jan 20 at 22:32
@DavidHeffernan Hello again :) No, I don't. Damn it. could you suggest some think? – Dudi Jan 20 at 22:35
BTW. I'm using Delphi XE2. - maybe with that program I can make help file? – Dudi Jan 20 at 22:42
What type of help file is it? – David Heffernan Jan 20 at 22:47
1  
See here at Torry's : Help Author Pro. Seems that MaxComponents is out of business. If you still have that tool, export the help file to a format that suits XE2. – LU RD Jan 20 at 23:12
show 4 more comments
feedback

1 Answer

up vote 5 down vote accepted

Help.hap is the name of your Help Author Pro project file. It is no more a help file than your .dpr Delphi project file is an executable program.

You can use your help-authoring tool to generate documentation in several different formats, including HTML and RTF. Generate an actual help file, such as help.hlp or help.chm.

link|improve this answer
1  
And then include either WinhelpViewer or HtmlhelpViewer in your project – David Heffernan Jan 20 at 23:31
1  
I'd advise .chm as the newer Windows versions (Vista and up) no longer support .hlp out-of-the-box and require a separate tool to be installed to view .hlp files. – Marjan Venema Jan 21 at 11:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.