home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Expert 29
/
Pce29cd.iso
/
RUNIMAGE
/
DELPHI40
/
DEMOS
/
DOC
/
FILMANEX
/
FCHNGDLG.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1998-06-16
|
506b
|
32 lines
unit FChngDlg;
interface
uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls;
type
TChangeDlg = class(TForm)
OKBtn: TButton;
CancelBtn: TButton;
Bevel1: TBevel;
CurrentDir: TLabel;
Label1: TLabel;
Label2: TLabel;
ToFileName: TEdit;
FromFileName: TEdit;
private
{ Private declarations }
public
{ Public declarations }
end;
var
ChangeDlg: TChangeDlg;
implementation
{$R *.DFM}
end.