home *** CD-ROM | disk | FTP | other *** search
- unit Fattrdlg;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, StdCtrls, Buttons, Lmdfile;
-
- type
- TFileAttrForm = class(TForm)
- FileName: TLabel;
- FilePath: TLabel;
- ChangeDate: TLabel;
- GroupBox1: TGroupBox;
- ReadOnly: TCheckBox;
- Archive: TCheckBox;
- System: TCheckBox;
- Hidden: TCheckBox;
- Button1: TButton;
- Button2: TButton;
- lblfiledate: TLabel;
- lblFilename: TLabel;
- lblfilepath: TLabel;
- lblfiletime: TLabel;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- FileAttrForm: TFileAttrForm;
-
- implementation
-
- {$R *.DFM}
-
- end.
-