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

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef QBFFormH
  7. #define QBFFormH
  8. //---------------------------------------------------------------------------
  9. #include <vcl\Classes.hpp>
  10. #include <vcl\Controls.hpp>
  11. #include <vcl\StdCtrls.hpp>
  12. #include <vcl\Forms.hpp>
  13. #include <vcl\Buttons.hpp>
  14. #include <vcl\ComCtrls.hpp>
  15. #include <vcl\DB.hpp>
  16. #include <vcl\DBTables.hpp>
  17. #include "Rsltform.h"
  18. //---------------------------------------------------------------------------
  19. class TQueryForm : public TForm
  20. {
  21. __published:    // IDE-managed Components 
  22.     TBitBtn *BitBtn1;
  23.     TGroupBox *GroupBox1;
  24.     TCheckBox *CheckBox1;
  25.     TCheckBox *CheckBox2;
  26.     TPageControl *PageControl1;
  27.     TTabSheet *TabSheet1;
  28.     TLabel *Label5;
  29.     TLabel *Label1;
  30.     TLabel *Label2;
  31.     TLabel *Label3;
  32.     TLabel *Label4;
  33.     TListBox *ListBox1;
  34.     TListBox *ListBox2;
  35.     TListBox *ListBox3;
  36.     TEdit *Edit1;
  37.     TComboBox *ComboBox1;
  38.     TBitBtn *BitBtn2;
  39.     TTabSheet *TabSheet2;
  40.     TMemo *Memo1;
  41.     TDataSource *DataSource1;
  42.     TTable *Table1;
  43.     void __fastcall FormCreate(TObject *Sender);
  44.     void __fastcall BitBtn2Click(TObject *Sender);
  45.     void __fastcall ListBox1Click(TObject *Sender);
  46.     void __fastcall ListBox2Click(TObject *Sender);
  47. private:        // User declarations
  48. public:         // User declarations
  49.     virtual __fastcall TQueryForm(TComponent* Owner);
  50. };
  51. //---------------------------------------------------------------------------
  52. extern TQueryForm *QueryForm;
  53. //---------------------------------------------------------------------------
  54. #endif
  55.