home *** CD-ROM | disk | FTP | other *** search
- unit Fileren;
-
- interface
-
- uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
- StdCtrls, ExtCtrls;
-
- type
- TRenDLG = class(TForm)
- OKBtn: TBitBtn;
- CancelBtn: TBitBtn;
- Bevel1: TBevel;
- Label1: TLabel;
- FileFrom: TEdit;
- Label2: TLabel;
- FileTo: TEdit;
- procedure FormShow(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- RenDLG: TRenDLG;
-
- implementation
-
- {$R *.DFM}
-
- procedure TRenDLG.FormShow(Sender: TObject);
- begin
- FileFrom.SetFocus;
- end;
-
- end.
-