home *** CD-ROM | disk | FTP | other *** search
/ PC Format Collection 48 / SENT14D.ISO / tech / delphi / disk15 / filmanex.pak / FCHNGDLG.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1995-08-24  |  502 b   |  32 lines

  1. unit Fchngdlg;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, StdCtrls, Buttons;
  8.  
  9. type
  10.   TChangeForm = class(TForm)
  11.     CurrentDir: TLabel;
  12.     Label2: TLabel;
  13.     Label3: TLabel;
  14.     FromFileName: TEdit;
  15.     ToFileName: TEdit;
  16.     BitBtn1: TBitBtn;
  17.     BitBtn2: TBitBtn;
  18.   private
  19.     { Private declarations }
  20.   public
  21.     { Public declarations }
  22.   end;
  23.  
  24. var
  25.   ChangeForm: TChangeForm;
  26.  
  27. implementation
  28.  
  29. {$R *.DFM}
  30.  
  31. end.
  32.