1234567891011121314151617181920212223242526272829303132333435363738 |
- //---------------------------------------------------------------------------
- #ifndef FrmSqlErrorFH
- #define FrmSqlErrorFH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include "cxButtons.hpp"
- #include "cxGraphics.hpp"
- #include "cxLookAndFeelPainters.hpp"
- #include "cxLookAndFeels.hpp"
- #include "dxSkinBlack.hpp"
- #include "dxSkinMcSkin.hpp"
- #include "dxSkinsCore.hpp"
- #include <Menus.hpp>
- //---------------------------------------------------------------------------
- class TFrmSqlError : public TForm
- {
- __published: // IDE-managed Components
- TcxButton *BtnClose1;
- TLabel *Label1;
- TLabel *Label2;
- TLabel *Label3;
- TEdit *Edit1;
- TEdit *Edit2;
- TEdit *Edit3;
- TMemo *reMsg;
- void __fastcall BtnClose1Click(TObject *Sender);
- private: // User declarations
- public: // User declarations
- __fastcall TFrmSqlError(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- //extern PACKAGE TFrmSqlError *FrmSqlError;
- //---------------------------------------------------------------------------
- #endif
|