home *** CD-ROM | disk | FTP | other *** search
- {Part of Imagelib VCL/DLL Library.
-
- Written by Jan Dekkers and Kevin Adams}
-
- unit Uabout;
-
- interface
-
- uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
- Buttons, ExtCtrls, sysutils;
-
- type
- TAboutBox = class(TForm)
- Panel1: TPanel;
- OKButton: TBitBtn;
- ProductName: TLabel;
- Version: TLabel;
- Copyright: TLabel;
- Label1: TLabel;
- Label2: TLabel;
- Label3: TLabel;
- Label4: TLabel;
- Label5: TLabel;
- Panel2: TPanel;
- Label6: TLabel;
- Label7: TLabel;
- Image1: TImage;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- AboutBox: TAboutBox;
-
- implementation
-
- {$R *.DFM}
-
-
- end.
-
-