home *** CD-ROM | disk | FTP | other *** search
/ PC World Plus! (NZ) 2001 June / HDC50.iso / Runimage / Delphi50 / Demos / Doc / Filmanex / FCHNGDLG.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1999-08-11  |  506 b   |  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.