Mega Code Archive

 
Categories / Delphi / Files
 

Use help files (.hlp)

Title: use help files (*.hlp)? { First we need to tell the Application object the name of the Help file and where to locate it. Zuerst müssen wir ein Hilfe Datei angeben. } Application.HelpFile := ExtractFilePath(Application.ExeName) + 'YourHelpFile.hlp'; { To Show a help file's content tab: Um das Inhalts Verzeichnis der Hilfe anzuzeigen: } Application.HelpCommand(HELP_CONTENTS, 0); { To display a specific topic of your help file: Ein bestimmtes Thema der Hilfe Datei anzeigen: } Application.HelpJump('TApplication_HelpJump');