home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / HOMEMOD.CPP < prev    next >
C/C++ Source or Header  |  1997-01-16  |  1KB  |  30 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++ Builder
  3. //Copyright (c) 1987 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. //---------------------------------------------------------------------