home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
borland
/
cb
/
setup
/
cbuilder
/
data.z
/
PASSWORD.H
< prev
next >
Wrap
C/C++ Source or Header
|
1997-02-28
|
945b
|
30 lines
//----------------------------------------------------------------------------
#ifndef PassWordH
#define PassWordH
//----------------------------------------------------------------------------
#include <vcl\Buttons.hpp>
#include <vcl\StdCtrls.hpp>
#include <vcl\Controls.hpp>
#include <vcl\Forms.hpp>
#include <vcl\Graphics.hpp>
#include <vcl\Classes.hpp>
#include <vcl\SysUtils.hpp>
#include <vcl\Windows.hpp>
#include <vcl\System.hpp>
//----------------------------------------------------------------------------
class TPasswordDlg : public TForm
{
__published:
TLabel *Label1;
TEdit *Password;
TButton *OKBtn;
TButton *CancelBtn;
private:
public:
virtual __fastcall TPasswordDlg(TComponent* AOwner);
};
//----------------------------------------------------------------------------
extern TPasswordDlg *PasswordDlg;
//----------------------------------------------------------------------------
#endif