db.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  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