📄 mainunit.h
字号:
//---------------------------------------------------------------------------
#ifndef MainunitH
#define MainunitH
//---------------------------------------------------------------------------
#include <vcl\Classes.hpp>
#include <vcl\Controls.hpp>
#include <vcl\StdCtrls.hpp>
#include <vcl\Forms.hpp>
#include <vcl\ComCtrls.hpp>
#include <vcl\ExtCtrls.hpp>
#include <vcl\Buttons.hpp>
#include "Grids.hpp"
#include "Oracle.hpp"
#include <vcl\Dialogs.hpp>
//---------------------------------------------------------------------------
class TMainForm : public TForm
{
__published: // IDE-managed Components
TStatusBar *StatusBar;
TPanel *ToolBar;
TSpeedButton *ConnectBtn;
TComboBox *TableList;
TPanel *XPortPanel;
TSpeedButton *ImportBtn;
TSpeedButton *ExportBtn;
TLabel *ColumnLabel;
TStringGrid *Grid;
TOracleLogon *OracleLogon;
TOracleSession *MainSession;
TOracleQuery *TablesQuery;
TOracleQuery *SelectQuery;
TOracleQuery *GetLongRawQuery;
TOracleQuery *PutLongRawQuery;
TOpenDialog *OpenDialog;
TSaveDialog *SaveDialog;
void __fastcall ConnectBtnClick(TObject *Sender);
void __fastcall TableListChange(TObject *Sender);
void __fastcall FormCreate(TObject *Sender);
void __fastcall ImportBtnClick(TObject *Sender);
void __fastcall ExportBtnClick(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TMainForm(TComponent* Owner);
int RowIdColumn;
void __fastcall ClearData();
void __fastcall BuildTableList();
};
//---------------------------------------------------------------------------
extern TMainForm *MainForm;
//---------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -