home *** CD-ROM | disk | FTP | other *** search
/ PC Format Collection 48 / SENT14D.ISO / tech / delphi / disk15 / filmanex.pak / FATTRDLG.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1995-08-24  |  588 b   |  35 lines

  1. unit Fattrdlg;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, StdCtrls, Buttons;
  8.  
  9. type
  10.   TFileAttrForm = class(TForm)
  11.     FileName: TLabel;
  12.     FilePath: TLabel;
  13.     ChangeDate: TLabel;
  14.     GroupBox1: TGroupBox;
  15.     BitBtn1: TBitBtn;
  16.     BitBtn2: TBitBtn;
  17.     ReadOnly: TCheckBox;
  18.     Archive: TCheckBox;
  19.     System: TCheckBox;
  20.     Hidden: TCheckBox;
  21.   private
  22.     { Private declarations }
  23.   public
  24.     { Public declarations }
  25.   end;
  26.  
  27. var
  28.   FileAttrForm: TFileAttrForm;
  29.  
  30. implementation
  31.  
  32. {$R *.DFM}
  33.  
  34. end.
  35.