首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Reportmanager和delphi 2010

Reportmanager和delphi 2010
EN

Stack Overflow用户
提问于 2010-06-02 01:49:28
回答 3查看 841关注 0票数 0

reportmanager (http://sourceforge.net/projects/reportman/)支持Delphi2010吗?

感谢Alejandro Jourdan

EN

回答 3

Stack Overflow用户

回答已采纳

发布于 2010-06-02 06:26:18

看起来SourceForge上的最新下载只有一些预制的项目,以便在Delphi2009之前编译原生组件。我希望将D2009项目修改为在D2010下编译应该很容易。

此外,正如您可能知道的,您可以将ReportManager与D2010一起使用,而不需要任何本机组件。

您可能会在Yahoo:http://tech.groups.yahoo.com/group/reportman/上的报表管理器用户组中获得更完整、更准确的答案

票数 1
EN

Stack Overflow用户

发布于 2013-12-18 20:45:37

我设法用Delphi2010 Professional编译了最新的3.0版本。这可不是一件容易的事。

为此,您必须执行以下步骤:

  • 编辑.inc文件,查看是否可以排除未使用的库。在我的例子中,我没有定义IBX,而是使用ZEOS作为数据库。

代码语言:javascript
复制
- Then you will get an error about IntPr being not defined. Replace it with Pointer.
- You will get hundreds of FormatSettings not defined errors. You have to remove such identifier. I.e. go in search and replace and type: "FormatSettings." including the dot and in replace leave it blank. Repeat for the many files that will show the same error, or do a multi-file search and replace at once.
- You will possibly get references to IBX units or packages even in case you removed it from the .inc file. You may just delete the offending lines.
- You will get a nasty missing unit WinApi.Common... Remove it from the uses clauses, you don't have it.
- At a certain point the above point will cause an undefined FOLDERID\_Public.

转到违规文件的const部分,并添加以下内容:

代码语言:javascript
复制
FOLDERID_Public: TGUID = '{DFDF76A2-C82A-4D63-906A-5644AC457385}';

应该可以了,现在您是Report Manager 3.0的骄傲所有者了!

票数 1
EN

Stack Overflow用户

发布于 2014-08-20 18:59:31

今天在XP上的D2010中安装,没有任何问题。第一次下载并安装版本。2.9b可执行文件。第二次下载Delphi包,在库中添加源路径,打开并编译成组工程文件。收到3个错误(甚至是相同的错误类型):找不到vcljpg。只需将vcljpg重命名为vclimg。之后,编译完成,安装。

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/2952008

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档