home *** CD-ROM | disk | FTP | other *** search
- unit Info;
-
- interface
- uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
- Buttons, ExtCtrls;
-
-
- type
- TInfoBox = class(TForm)
- Panel1: TPanel;
- OKButton: TBitBtn;
- FName: TLabel;
- FFormat: TLabel;
- FWidth: TLabel;
- FHeight: TLabel;
- FBits: TLabel;
- FDisk: TLabel;
- FMem: TLabel;
- FComp: TLabel;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- InfoBox: TInfoBox;
-
- implementation
- {$R *.DFM}
-
- end.
-
-