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

  1. //---------------------------------------------------------------------------
  2. #ifndef CBSMainH
  3. #define CBSMainH
  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. class TForm1 : public TForm
  12. {
  13. __published:    // IDE-managed Components
  14.     TPanel *Panel1;
  15.     TButton *testbutton;
  16.     TButton *exitbutton;
  17.     TListBox *ListBox1;
  18.     void __fastcall exitbuttonClick(TObject *Sender);
  19.     void __fastcall testbuttonClick(TObject *Sender);
  20. private:    // User declarations
  21. public:        // User declarations
  22.     __fastcall TForm1(TComponent* Owner);
  23. };
  24. //---------------------------------------------------------------------------
  25. extern TForm1 *Form1;
  26. //---------------------------------------------------------------------------
  27. void runTest(void);
  28. #endif
  29.