home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programming Unleashed / Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso / misc / explorer / status.pas < prev    next >
Pascal/Delphi Source File  |  1995-03-20  |  554b  |  34 lines

  1. unit Status;
  2.  
  3. { Program copyright (c) 1995 by Charles Calvert & Steve Teixeira }
  4. { Project Name: EXPLORER }
  5.  
  6. interface
  7.  
  8. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
  9.   ExtCtrls;
  10.  
  11. type
  12.   TUpStatus = class(TForm)
  13.     Label1: TLabel;
  14.     Label2: TLabel;
  15.     Label3: TLabel;
  16.     Label4: TLabel;
  17.     Label5: TLabel;
  18.     Bevel1: TBevel;
  19.     Label6: TLabel;
  20.   private
  21.     { Private declarations }
  22.   public
  23.     { Public declarations }
  24.   end;
  25.  
  26. var
  27.   UpStatus: TUpStatus;
  28.  
  29. implementation
  30.  
  31. {$R *.DFM}
  32.  
  33. end.
  34.