📄 rm.inc
字号:
{*****************************************}
{ }
{ Report Machine v2.0 }
{ Include file }
{ }
{*****************************************}
{$B-} {- Complete Boolean Evaluation }
{$R-} {- Range-Checking }
{$V-} {- Var-String Checking }
{$T-} {- Typed @ operator }
{$X+} {- Extended syntax }
{$P+} {- Open string params }
{$J+} {- Writeable structured consts }
{$H+} {- Use long strings by default }
{$IFDEF VER90} // Delphi 2.0
{$DEFINE Delphi2}
{$ENDIF}
{$IFDEF VER100} // Delphi 3.0
{$DEFINE Delphi3}
{$ENDIF}
{$IFDEF VER120} // Delphi 4.0
{$DEFINE Delphi4}
{$ENDIF}
{$IFDEF VER130} // Delphi 5.0
{$DEFINE Delphi4}
{$DEFINE Delphi5}
{$ENDIF}
{$IFDEF VER140} // Delphi 6.0
{$DEFINE Delphi4}
{$DEFINE Delphi5}
{$DEFINE Delphi6}
{$ENDIF}
{$IFDEF VER93} // Borland C++ Builder 1.0
{$DEFINE Delphi2}
{$ENDIF}
{$IFDEF VER110} // Borland C++ Builder 3.0
{$DEFINE Delphi3}
{$ObjExportAll on}
{$ENDIF}
{$IFDEF VER125} // Borland C++ Builder 4.0
{$DEFINE Delphi4}
{$ObjExportAll on}
{$ENDIF}
{$IFDEF VER130} // Borland C++ Builder 5.0
{$IFDEF BCB}
{$ObjExportAll on}
{$ENDIF}
{$ENDIF}
//-------------------------Additional components----------------------------
//-------------------- Use RichEdit 2.0 ---------------------------------
{$DEFINE USE_RICHEDIT_VER_20}
//------------------- TeeChart component ----------------------------
{$DEFINE TeeChart}
//--------------------Decision Grid----------------------------------
{$DEFINE DecisionGrid}
//------------------- JPEG images -----------------------------------
// JPEG images - only available in Delphi 3 and above. Adds approximately
// 100Kb to your EXE.
// If you want to show jpeg images in "Picture" object, uncomment
// the following line:
{$DEFINE JPEG}
//------------------- GIF images -----------------------------------
// GIF images - need RXLib. Adds approximately
// If you want to show GIF images in "Picture" object, uncomment
// the following line:
{$DEFINE RXGIF}
//------------------- "Open Picture" dialog -------------------------
// Only available in Delphi 3 and above. Adds approximately 60Kb to your EXE.
// If you want to use standard "Open picture" dialog in picture editor,
// uncomment the following line:
{$DEFINE OPENPICTUREDLG}
//------------------- RX Rich 2.0 -----------------------------------
// RX RichEdit 2.0. You should install RX Library (2.60 or above) first.
// If you want to TRxRichEdit, Print TRxRichEdit, TRxDBRichEdit Use TRMFormReport,
// uncomment the following line:
//{$DEFINE RX}
//------------------- InfoPower -----------------------------------
// If you want to TwwDBRichEdit, Print TwwDBGrid Use TRMFormReport, uncomment
// the following line:
//{$DEFINE InfoPower}
//------------------- EHLib 1.54 or Above -----------------------------------
// If you want to Print TDBGridEh Use TRMFormReport, uncomment
// the following line:
//{$DEFINE EHLib}
//{$DEFINE EHLib20} // 如果是2.0以上版本,这行也需要取消注释
//------------------- Script editor with syntax highlightning -------
// To use syntax highlightning in script editor, you should install
// mwEdit component by Martin Waldenburg first. Adds approximately 100Kb
// to your EXE.
// (http://synedit.sourceforge.net/mwEdit/mwedit_0.92a.zip)
// Tested with mwEdit v0.92.
//{$DEFINE MWEDIT}
//-------------------- Zlib ---------------------------------------
//{$DEFINE Zlib}
//-----------------Data Manager -----------------------------
{$DEFINE DM_ADO} //Support ADO
{$DEFINE DM_BDE} //Support BDE
{$DEFINE DM_IBX} //Support InterBase Express
{$DEFINE DM_DBX}
//{$DEFINE DM_DIAMOND} //Support DimandAccess
//{$DEFINE DM_HALCYON} //Support Halcyon
//{$DEFINE DM_DBISAM} //Support DBISAM
//-------------------------------------------------------------------
{$IFDEF Delphi2}
{$UNDEF JPEG}
{$UNDEF OPENPICTUREDLG}
{$ENDIF}
{$IFNDEF Delphi5}
{$UNDEF DM_ADO}
{$UNDEF DM_IBX}
{$ENDIF}
{$IFNDEF RX}
{$UNDEF RXGIF}
{$ENDIF}
{$IFNDEF Delphi6}
{$UNDEF DM_DBX}
{$ENDIF}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -