ich möchte für eine meiner Anwendungen eine HTML-HIlfe erstellen.
Gefunden habe ich https://wiki.lazarus.freepascal.org/Add ... ication/de
Leider klappt das nicht.
Mein Code:
Code: Alles auswählen
unit Unit1;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, LazHelpHTML, StdCtrls;
type
{ TForm1 }
TForm1 = class(TForm)
Edit1: TEdit;
HTMLBrowserHelpViewer1: THTMLBrowserHelpViewer;
HTMLHelpDatabase1: THTMLHelpDatabase;
private
public
end;
var
Form1: TForm1;
implementation
{$R *.lfm}
end.
Code: Alles auswählen
<html>
<body>
HTML/Edit1>
</body>
</html>
Help keyword "html/edit1.html" not found.
Titel des Dialogs: A help database was found for this topic but the topic (...was not found)
Was mache ich falsch? Für Hilfe danke ich bereits im voraus.