home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1997 April
/
Chip_1997-04_cd.bin
/
prezent
/
cb
/
data.z
/
FCHNGDLG.H
< prev
next >
Wrap
C/C++ Source or Header
|
1997-01-16
|
1KB
|
35 lines
//----------------------------------------------------------------------------
//Borland C++ Builder
//Copyright (c) 1987 Borland International Inc. All Rights Reserved.
//----------------------------------------------------------------------------
//---------------------------------------------------------------------------
#ifndef UchngdlgH
#define UchngdlgH
//---------------------------------------------------------------------------
#include <vcl\Classes.hpp>
#include <vcl\Controls.hpp>
#include <vcl\StdCtrls.hpp>
#include <vcl\Forms.hpp>
#include <vcl\ExtCtrls.hpp>
//---------------------------------------------------------------------------
class TChangeDlg : public TForm
{
__published: // IDE-managed Components
TBevel *Bevel1;
TLabel *CurrentDir;
TLabel *Label1;
TLabel *Label2;
TButton *OKBtn;
TButton *CanBtn;
TEdit *ToFileName;
TEdit *FromFileName;
private: // User declarations
public: // User declarations
virtual __fastcall TChangeDlg(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern TChangeDlg *ChangeDlg;
//---------------------------------------------------------------------------
#endif