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

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef RsltformH
  7. #define RsltformH
  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\Buttons.hpp>
  15. #include <vcl\DBCtrls.hpp>
  16. #include <vcl\DBGrids.hpp>
  17. #include <vcl\Grids.hpp>
  18. #include <vcl\DB.hpp>
  19. #include <vcl\DBTables.hpp>
  20. //---------------------------------------------------------------------------
  21. class TResultForm : public TForm
  22. {
  23. __published:    // IDE-managed Components 
  24.     TPanel *Panel1;
  25.     TSpeedButton *SpeedButton2;
  26.     TDBNavigator *DBNavigator;
  27.     TPanel *Panel4;
  28.     TSpeedButton *SpeedButton1;
  29.     TPanel *Panel2;
  30.     TDBGrid *DBGrid1;
  31.     TPanel *Panel3;
  32.     TDataSource *DataSource1;
  33.     TQuery *Query1;
  34.     void __fastcall SpeedButton2Click(TObject *Sender);
  35.     void __fastcall SpeedButton1Click(TObject *Sender);
  36. private:        // User declarations
  37. public:         // User declarations
  38.     virtual __fastcall TResultForm(TComponent* Owner);
  39. };
  40. //---------------------------------------------------------------------------
  41. extern TResultForm *ResultForm;
  42. //---------------------------------------------------------------------------
  43. #endif
  44.