home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 6 / mastvb6.iso / leadtools / ocx32.lt / INFO.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-01-01  |  522 b   |  34 lines

  1. unit Info;
  2.  
  3. interface
  4. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
  5.   Buttons, ExtCtrls;
  6.  
  7.  
  8. type
  9.   TInfoBox = class(TForm)
  10.     Panel1: TPanel;
  11.     OKButton: TBitBtn;
  12.     FName: TLabel;
  13.     FFormat: TLabel;
  14.     FWidth: TLabel;
  15.     FHeight: TLabel;
  16.     FBits: TLabel;
  17.     FDisk: TLabel;
  18.     FMem: TLabel;
  19.     FComp: TLabel;
  20.   private
  21.     { Private declarations }
  22.   public
  23.     { Public declarations }
  24.   end;
  25.  
  26. var
  27.   InfoBox: TInfoBox;
  28.  
  29. implementation
  30. {$R *.DFM}
  31.  
  32. end.
  33.  
  34.