home *** CD-ROM | disk | FTP | other *** search
/ Chip: Shareware for Win 95 / Chip-Shareware-Win95.bin / ostatni / delphi / delphi1 / lmdtoolb.exe / demos / fileman / fattrdlg.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1995-09-07  |  701 b   |  39 lines

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