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