Jim Sawyer
DataWare
> Is it possible to use a .CHM help file for Delphi 7? If so, how?
It is.
You can get the HTMHlp.pas and HTMLHlp.inc filers from Project Jedi,
then use it as follows (from a production application of mine) ...
uses ... HTMLHlp, ...
procedure Tfrm_UserQuery.BtnHelpClick(Sender: TObject);
begin
inherited;
if HtmlHlp.HtmlHelpLoaded then
HtmlHlp.HtmlHelp(Application.Handle,
PChar('UsersGuide.chm'),
HH_DISPLAY_TOC, 0);
end;
Hope that helps <G>
... Joe
Member of the UK Developers Group
Jim