我有C# (.net 2)的应用程序,我使用Crystal Report 11。
当我将应用程序分发到整个安装程序时,我如何安装Crystal Report运行时文件?
除了安装整个Crystal Report Runtime (43MB)之外,还有其他简单的方法吗?
谢谢,
发布于 2009-01-21 22:31:41
你应该可以下载merge modules from SAP (当然,他现在是水晶的主人)
发布于 2009-01-23 02:15:15
此解决方案适用于CR10。它大约有29Mb的文件:
第一个文件包含一些关于CR公共文件夹的数据。如果需要,请更改/更新它:
crdeploy.reg
------------
REGEDIT4
[HKEY_LOCAL_MACHINE\SOFTWARE\Crystal Decisions\10.0\Crystal Reports]
"CommonFiles"="c:\\program files\\common files\\crystal decisions\\2.5\\bin"以下文件必须放在CR "common files“文件夹下(在crDeploy.reg/registery文件中定义):
C:\pfd\DLL\CRYSTAL_10\TO_COMMONFILES
------------------------------------
crdb_ado.dll 'if you use an ado connection. There is one specific dll for each type of connexion'
crheapalloc.dll
crtowords_en.dll 'this one is computer/language specific. Transforms numbers '
'in words. If your computer is turned into french, you ll'
'have to get the corresponding dll to have the function work properly'
crxf_html.dll
crxf_pdf.dll
crxf_rtf.dll
crxf_wordw.dll
crxf_xls.dll
exlate32.dll
GDIPLUS.DLL
Implode.dll
querybuilder.dll
sscdlg.dll
sscsdk80.dll
u252000.dll 'you might not need all of these ....'
u25dts.dll
u25samp1.dll
u2dapp.dll
u2ddisk.dll
u2dmapi.dll
u2dpost.dll
u2fcr.dll
u2frdef.dll
u2frec.dll
u2fsepv.dll
u2ftext.dll
u2fxml.dll
u2l2000.dll
u2lcom.dll
u2ldts.dll
u2lexch.dll
u2lfinra.dll
ufmanager.dll以下文件必须位于同一文件夹中,并且必须通过regsvr32注册
C:\pfd\DLL\CRYSTAL_10\TO_COMMONFILES\TO_REGISTER
----------------------------------------------
CRAnalyzer.dll
craxdrt.dll 'is the free dll for manipulating report objects.'
'You can use the licensed 'craxddrt.dll' that allows'
'you to modify reports at runtime.'
crqe.dll
crtslv.dll
crviewer.dll 'is the dll for the viewer you can display on your GUI'
ExportModeller.dll
keycode.dll
pageObjectModel.dll
ReportRenderer.dll
webReporting.dll应将以下文件添加到系统文件夹(可从其他来源获得...)
C:\pfd\DLL\CRYSTAL_10\TO_SYSTEM
-------------------------------
cxlibw-1-6.dll
dbghelp.dll
msvcrt.dll
riched20.dll
usp10.dllhttps://stackoverflow.com/questions/461775
复制相似问题