Examples Delphi

Title: How to close the help automatically when closing application
procedure TForm1.FormDestroy(Sender: TObject);
begin
Application.HelpCommand(HELP_QUIT, 0);
end;