home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / borland / cb / setup / cbuilder / data.z / HOMEMOD.CPP < prev    next >
C/C++ Source or Header  |  1997-02-28  |  1KB  |  30 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #include <vcl.h>
  7. #pragma hdrstop
  8.  
  9. #include "HomeMod.h"
  10. #include "CustMod.h"
  11. #include "TermMod.h"
  12. //---------------------------------------------------------------------------
  13. #pragma resource "*.dfm"
  14. THome *Home;
  15. //---------------------------------------------------------------------------
  16. __fastcall THome::THome(TComponent* Owner)
  17.   : TBase(Owner)
  18. {
  19. }
  20. //---------------------------------------------------------------------------
  21. void __fastcall THome::Button2Click(TObject *Sender)
  22. {
  23.   Cust->Show();  
  24. }
  25. //---------------------------------------------------------------------
  26. void __fastcall THome::Button3Click(TObject *Sender)
  27. {
  28.   Term->Show();  
  29. }
  30. //---------------------------------------------------------------------