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

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef lookupH
  7. #define lookupH
  8. //---------------------------------------------------------------------------
  9. #include <vcl\Classes.hpp>
  10. #include <vcl\Controls.hpp>
  11. #include <vcl\StdCtrls.hpp>
  12. #include <vcl\Forms.hpp>
  13. #include <vcl\ExtCtrls.hpp>
  14. #include <vcl\DBCtrls.hpp>
  15. #include <vcl\Menus.hpp>
  16. #include <vcl\DBGrids.hpp>
  17. #include <vcl\Grids.hpp>
  18. //---------------------------------------------------------------------------
  19. class TfmLookup : public TForm
  20. {
  21. __published:    // IDE-managed Components 
  22.     TPanel *Panel1;
  23.     TDBNavigator *DBNavigator1;
  24.     TMainMenu *MainMenu1;
  25.     TMenuItem *About1;
  26.     TPanel *Panel2;
  27.     TDBGrid *DBGrid1;
  28.     void __fastcall About1Click(TObject *Sender);
  29. private:        // User declarations
  30. public:         // User declarations
  31.     virtual __fastcall TfmLookup(TComponent* Owner);
  32. };
  33. //---------------------------------------------------------------------------
  34. extern TfmLookup *fmLookup;
  35. //---------------------------------------------------------------------------
  36. #endif
  37.