reportmanager (http://sourceforge.net/projects/reportman/)支持Delphi2010吗?
感谢Alejandro Jourdan
发布于 2010-06-02 06:26:18
看起来SourceForge上的最新下载只有一些预制的项目,以便在Delphi2009之前编译原生组件。我希望将D2009项目修改为在D2010下编译应该很容易。
此外,正如您可能知道的,您可以将ReportManager与D2010一起使用,而不需要任何本机组件。
您可能会在Yahoo:http://tech.groups.yahoo.com/group/reportman/上的报表管理器用户组中获得更完整、更准确的答案
发布于 2013-12-18 20:45:37
我设法用Delphi2010 Professional编译了最新的3.0版本。这可不是一件容易的事。
为此,您必须执行以下步骤:
- 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部分,并添加以下内容:
FOLDERID_Public: TGUID = '{DFDF76A2-C82A-4D63-906A-5644AC457385}';应该可以了,现在您是Report Manager 3.0的骄傲所有者了!
发布于 2014-08-20 18:59:31
今天在XP上的D2010中安装,没有任何问题。第一次下载并安装版本。2.9b可执行文件。第二次下载Delphi包,在库中添加源路径,打开并编译成组工程文件。收到3个错误(甚至是相同的错误类型):找不到vcljpg。只需将vcljpg重命名为vclimg。之后,编译完成,安装。
https://stackoverflow.com/questions/2952008
复制相似问题