FrmSqlErrorF.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. //---------------------------------------------------------------------------
  2. #ifndef FrmSqlErrorFH
  3. #define FrmSqlErrorFH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include "cxButtons.hpp"
  10. #include "cxGraphics.hpp"
  11. #include "cxLookAndFeelPainters.hpp"
  12. #include "cxLookAndFeels.hpp"
  13. #include "dxSkinBlack.hpp"
  14. #include "dxSkinMcSkin.hpp"
  15. #include "dxSkinsCore.hpp"
  16. #include <Menus.hpp>
  17. //---------------------------------------------------------------------------
  18. class TFrmSqlError : public TForm
  19. {
  20. __published: // IDE-managed Components
  21. TcxButton *BtnClose1;
  22. TLabel *Label1;
  23. TLabel *Label2;
  24. TLabel *Label3;
  25. TEdit *Edit1;
  26. TEdit *Edit2;
  27. TEdit *Edit3;
  28. TMemo *reMsg;
  29. void __fastcall BtnClose1Click(TObject *Sender);
  30. private: // User declarations
  31. public: // User declarations
  32. __fastcall TFrmSqlError(TComponent* Owner);
  33. };
  34. //---------------------------------------------------------------------------
  35. //extern PACKAGE TFrmSqlError *FrmSqlError;
  36. //---------------------------------------------------------------------------
  37. #endif