2008-10-31 21:18:20 +00:00
|
|
|
unit frm_Readme;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
2023-02-20 17:36:51 +00:00
|
|
|
SysUtils, Classes, Controls, Forms, Dialogs, StdCtrls;
|
2008-10-31 21:18:20 +00:00
|
|
|
|
|
|
|
type
|
2023-02-17 16:28:47 +00:00
|
|
|
|
|
|
|
{ TfrmReadme }
|
|
|
|
|
2008-10-31 21:18:20 +00:00
|
|
|
TfrmReadme = class(TForm)
|
|
|
|
Memo1: TMemo;
|
|
|
|
procedure FormActivate(Sender: TObject);
|
|
|
|
private
|
|
|
|
{ Private declarations }
|
|
|
|
public
|
|
|
|
{ Public declarations }
|
|
|
|
end;
|
|
|
|
|
|
|
|
var
|
|
|
|
frmReadme: TfrmReadme;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
2023-02-20 17:36:51 +00:00
|
|
|
{$R *.lfm}
|
2008-10-31 21:18:20 +00:00
|
|
|
|
|
|
|
procedure TfrmReadme.FormActivate(Sender: TObject);
|
|
|
|
begin
|
|
|
|
Memo1.WordWrap := True;
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
end.
|