Tagged Questions
3
votes
3answers
665 views
How to compile HTML files into CHM file?
How in my code (Delphi) to make CHM files from a bunch of HTML (with linked image files)? Details needed, thanks!
2
votes
0answers
121 views
Cannot use Cltr-F with CHM help file opened with Delphi XE2
With Delphi XE2 (Update 2) create a Win32 VCL application with a button on a form. Make sure HTMLHelpViewer is in the uses list. In FormCreate set the application help file to a valid CHM help file, ...
1
vote
2answers
564 views
Any light for TEventLogger?
I want to see about logging events from a Delphi 5 application to the Windows log, and from another post here I see that I can use the TEventLogger class to do this. However, I can't find any ...
0
votes
1answer
120 views
including help file in Delphi app
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 ...