home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 May / VPR9705A.ISO / VPR_DATA / PROGRAM / CBTRIAL / SETUP / DATA.Z / LOOKUP.CPP < prev    next >
C/C++ Source or Header  |  1997-02-14  |  1KB  |  29 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #include <vcl\vcl.h>
  7. #pragma hdrstop
  8.  
  9. #include "lookup.h"
  10. #include "About.h"
  11. #include "maindata.h"
  12. //---------------------------------------------------------------------------
  13. #pragma resource "*.dfm"
  14. TfmLookup *fmLookup;
  15. //---------------------------------------------------------------------------
  16. __fastcall TfmLookup::TfmLookup(TComponent* Owner)
  17.   : TForm(Owner)
  18. {
  19. }
  20. //---------------------------------------------------------------------------
  21. void __fastcall TfmLookup::About1Click(TObject *Sender)
  22. {
  23.   TfmAbout *fmAbout;
  24.  
  25.   fmAbout = new TfmAbout(NULL);
  26.   fmAbout->ShowModal();
  27.   delete fmAbout;
  28. }
  29. //---------------------------------------------------------------------