33 lines
480 B
ObjectPascal
33 lines
480 B
ObjectPascal
unit about;
|
|
|
|
interface
|
|
|
|
uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
|
|
Buttons, ExtCtrls, jpeg;
|
|
|
|
type
|
|
TAboutBox = class(TForm)
|
|
Panel1: TPanel;
|
|
ProgramIcon: TImage;
|
|
ProductName: TLabel;
|
|
Version: TLabel;
|
|
Copyright: TLabel;
|
|
Comments: TLabel;
|
|
OKButton: TButton;
|
|
Label1: TLabel;
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
AboutBox: TAboutBox;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
end.
|
|
|