home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1996 August / VPR9608A.BIN / del20try / install / data.z / FCHNGDLG.PAS < prev    next >
Pascal/Delphi Source File  |  1996-05-08  |  506b  |  32 lines

  1. unit FChngDlg;
  2.  
  3. interface
  4.  
  5. uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
  6.   Buttons, ExtCtrls;
  7.  
  8. type
  9.   TChangeDlg = class(TForm)
  10.     OKBtn: TButton;
  11.     CancelBtn: TButton;
  12.     Bevel1: TBevel;
  13.     CurrentDir: TLabel;
  14.     Label1: TLabel;
  15.     Label2: TLabel;
  16.     ToFileName: TEdit;
  17.     FromFileName: TEdit;
  18.   private
  19.     { Private declarations }
  20.   public
  21.     { Public declarations }
  22.   end;
  23.  
  24. var
  25.   ChangeDlg: TChangeDlg;
  26.  
  27. implementation
  28.  
  29. {$R *.DFM}
  30.  
  31. end.
  32.