Chameleon/about1.pas
Nikolaos Georgiou 90991c865d Adding gitignore
Removed unused unit Windows from about form.
Removed old Delphi options file.
Including version info in the generated exe file.
2021-10-29 07:48:05 +02:00

33 lines
437 B
ObjectPascal

unit about1;
{$MODE Delphi}
interface
uses SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls;
type
TAboutBox = class(TForm)
Panel1: TPanel;
ProductName: TLabel;
Version: TLabel;
Copyright: TLabel;
Comments: TLabel;
OKButton: TButton;
private
{ Private declarations }
public
{ Public declarations }
end;
var
AboutBox: TAboutBox;
implementation
{$R *.lfm}
end.