home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1997 August
/
VPR9708A.ISO
/
D3TRIAL
/
INSTALL
/
DATA.Z
/
FATTRDLG.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1997-05-08
|
602b
|
35 lines
unit FAttrDlg;
interface
uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls;
type
TFileAttrForm = class(TForm)
OKBtn: TButton;
CancelBtn: TButton;
Bevel1: TBevel;
FileDirName: TLabel;
FilePathName: TLabel;
ChangeDate: TLabel;
GroupBox1: TGroupBox;
ReadOnly: TCheckBox;
Archive: TCheckBox;
System: TCheckBox;
Hidden: TCheckBox;
private
{ Private declarations }
public
{ Public declarations }
end;
var
FileAttrForm: TFileAttrForm;
implementation
{$R *.DFM}
end.