report machine最新版是多少

xuxugr 2009-01-06 10:32:14
我用的2.65,比较难装,好像看不到有升级版了,我正在考虑是否全部采用fastreport,但这样的话有太多的表需要改了
...全文
399 11 打赏 收藏 转发到动态 举报
AI 作业
写回复
用AI写文章
11 条回复
切换为时间正序
请发表友善的回复…
发表回复
ezhuo 2009-02-10
  • 打赏
  • 举报
回复
3.0的容量安装呀
starluck 2009-01-06
  • 打赏
  • 举报
回复


2.65 不需要DEV的控件吧。 還有就是EHLIB上面你看下,注釋掉就可翠了。
xuxugr 2009-01-06
  • 打赏
  • 举报
回复

{*****************************************}
{ }
{ 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 VER150} // Delphi 7.0
{$DEFINE Delphi4}
{$DEFINE Delphi5}
{$DEFINE Delphi6}
{$DEFINE Delphi7}
{$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}

{$IFDEF VER140} // Borland C++ Builder 6.0
{$IFDEF BCB}
{$ObjExportAll on}
{$ENDIF}
{$ENDIF}

//-------------------- Use Toolbutton 2K --------------------------------
//{$DEFINE USE_TB2K} // 使用tb2K,取消此行的注释

//-------------------- Use Toolbutton 97 --------------------------------
{$DEFINE USE_INTERNALTB97} // 使用rm集成的tb97,如果已安装tb97,注释掉此行

//-------------------- Use RichEdit 2.0 ---------------------------------
{$DEFINE USE_RICHEDIT_VER_20}

//------------------- TeeChart component ----------------------------
{$DEFINE TeeChart}
//{$DEFINE TeeChartPro} // if you have TeeChar Pro, uncomment this line

//--------------------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}

//-------------------------------------------------------------------
{$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}

{$IFNDEF Delphi4}
{$UNDEF USE_TB2K}
{$ENDIF}


这是指这吗rm.inc,改也不知道怎么改
starluck 2009-01-06
  • 打赏
  • 举报
回复


這是因為你的INC文件配置的問題。 原則上RM是不用第三方的,但如果你已經裝了,只要修改INC那個配置就行了。
xuxugr 2009-01-06
  • 打赏
  • 举报
回复
装之前必须要先装几个其它控件,如ehlib,dev之类,请问2.65之后还有哪几个版本,有哪个版本比较好装并且稳定,我用的delphi7
火龙岛主 2009-01-06
  • 打赏
  • 举报
回复
2.65,比较难装
有什么问题?
xuxugr 2009-01-06
  • 打赏
  • 举报
回复
看过有3.0的,但是几乎很少有安装成功的,也不知道为什么reportMachine这么难装,但公司的erp系统都用reportMachine2.65,今后升级是个问题
starluck 2009-01-06
  • 打赏
  • 举报
回复
已經7.0 , reportMachine 每次版本改動都不小,估計你從 2.6 -> 7.0 也夠嗆
starluck 2009-01-06
  • 打赏
  • 举报
回复

這是老王最新的論壇;

http://rmachine.5d6d.com/home.php
starluck 2009-01-06
  • 打赏
  • 举报
回复

呵呵,不錯,加油!!!
xuxugr 2009-01-06
  • 打赏
  • 举报
回复
谢谢,装成功了,2.6版的,我会继续用下去,虽然很多人建议我用fastreport

2,507

社区成员

发帖
与我相关
我的任务
社区描述
Delphi 数据库相关
社区管理员
  • 数据库相关社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧