home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1996 August / VPR9608A.BIN / del20try / install / data.z / FATTRDLG.PAS < prev    next >
Pascal/Delphi Source File  |  1996-05-08  |  602b  |  35 lines

  1. unit FAttrDlg;
  2.  
  3. interface
  4.  
  5. uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
  6.   Buttons, ExtCtrls;
  7.  
  8. type
  9.   TFileAttrForm = class(TForm)
  10.     OKBtn: TButton;
  11.     CancelBtn: TButton;
  12.     Bevel1: TBevel;
  13.     FileDirName: TLabel;
  14.     FilePathName: TLabel;
  15.     ChangeDate: TLabel;
  16.     GroupBox1: TGroupBox;
  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.