home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
borland
/
cb
/
setup
/
cbuilder
/
data.z
/
HOMEMOD.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1997-02-28
|
1KB
|
30 lines
//----------------------------------------------------------------------------
//Borland C++Builder
//Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
//----------------------------------------------------------------------------
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "HomeMod.h"
#include "CustMod.h"
#include "TermMod.h"
//---------------------------------------------------------------------------
#pragma resource "*.dfm"
THome *Home;
//---------------------------------------------------------------------------
__fastcall THome::THome(TComponent* Owner)
: TBase(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall THome::Button2Click(TObject *Sender)
{
Cust->Show();
}
//---------------------------------------------------------------------
void __fastcall THome::Button3Click(TObject *Sender)
{
Term->Show();
}
//---------------------------------------------------------------------