home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / winmysqladmin / db.h < prev    next >
C/C++ Source or Header  |  2000-06-17  |  1KB  |  33 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef dbH
  3. #define dbH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. #include <Graphics.hpp>
  11. #include <Buttons.hpp>
  12. //---------------------------------------------------------------------------
  13. class Tdbfrm : public TForm
  14. {
  15. __published:    // IDE-managed Components
  16.         TImage *Image1;
  17.         TLabel *Label1;
  18.         TLabel *Label2;
  19.         TEdit *Edit1;
  20.         TSpeedButton *SpeedButton1;
  21.         TSpeedButton *SpeedButton2;
  22.         void __fastcall SpeedButton2Click(TObject *Sender);
  23.         void __fastcall SpeedButton1Click(TObject *Sender);
  24. private:    // User declarations
  25.                 bool __fastcall VerDBName();
  26. public:        // User declarations
  27.         __fastcall Tdbfrm(TComponent* Owner);
  28. };
  29. //---------------------------------------------------------------------------
  30. extern PACKAGE Tdbfrm *dbfrm;
  31. //---------------------------------------------------------------------------
  32. #endif
  33.