main.h

来自「AbsDataBase5.16 最新版」· C头文件 代码 · 共 52 行

H
52
字号
//---------------------------------------------------------------------------
#ifndef MainH
#define MainH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "ABSMain.hpp"
#include <ComCtrls.hpp>
#include <Db.hpp>
#include <Dialogs.hpp>
#include <ExtCtrls.hpp>
#include <DBCtrls.hpp>
#include <DBGrids.hpp>
#include <Grids.hpp>
//---------------------------------------------------------------------------
class TfrmMain : public TForm
{
__published:	// IDE-managed Components
        TLabel *Label2;
        TLabel *Label3;
        TListView *lvTables;
        TGroupBox *GroupBox2;
        TLabel *Label1;
        TRichEdit *reExportToSql;
        TGroupBox *GroupBox1;
        TCheckBox *cbAddDropTable;
        TCheckBox *cbStructure;
        TCheckBox *cbData;
        TCheckBox *cbBlobSettings;
        TCheckBox *cbFieldNamesInInsert;
        TButton *btnExpotrAsSqlToScreeen;
        TButton *btnExpotrAsSqlToFile;
        TSaveDialog *dlgSave;
        TABSDatabase *dbDemos;
        TABSTable *tblTable;
        void __fastcall FormCreate(TObject *Sender);
        void __fastcall cbStructureClick(TObject *Sender);
        void __fastcall cbDataClick(TObject *Sender);
        void __fastcall btnExpotrAsSqlToScreeenClick(TObject *Sender);
        void __fastcall btnExpotrAsSqlToFileClick(TObject *Sender);
private:	// User declarations
        void ExportSelectedTablesToSQL(TStrings* SQL);	// User declarations
public:		// User declarations
        __fastcall TfrmMain(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TfrmMain *frmMain;
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?