home *** CD-ROM | disk | FTP | other *** search
/ Datatid 1999 #6 / Datatid_1999-06.iso / internet / Tango352Promo / P.SQL / PTKPKG.1 / CBBMAIN.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-10-27  |  1.1 KB  |  32 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef CBBMainH
  3. #define CBBMainH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\ExtCtrls.hpp>
  10.  
  11. #include <btitypes.h>
  12. //---------------------------------------------------------------------------
  13. //---------------------------------------------------------------------------
  14. class TForm1 : public TForm
  15. {
  16. __published:    // IDE-managed Components
  17.     TPanel *Panel1;
  18.     TButton *RunButton;
  19.     TButton *ExitButton;
  20.     TListBox *ListBox1;
  21.     void __fastcall ExitButtonClick(TObject *Sender);
  22.     void __fastcall RunButtonClick(TObject *Sender);
  23. private:    // User declarations
  24. public:        // User declarations
  25.     __fastcall TForm1(TComponent* Owner);
  26. };
  27. //---------------------------------------------------------------------------
  28. extern TForm1 *Form1;
  29. //---------------------------------------------------------------------------
  30. BTI_SINT runTest(void);
  31. #endif
  32.