如何重新分发使用 Crystal Reports 的 VB 6 应用程序?
假设目标系统有“Crystal Reports for Visual Studio 2008”,我如何将可执行的 VB 6 应用程序与报告文件一起分发?仅移动可执行文件和报告文件是行不通的。我想知道如何创建可再发行包。我们使用CR10。
Assuming target system has "Crystal Reports for Visual Studio 2008", how can I distribute a VB 6 application excutable along with report file? Just moving the executable and report file doesn't work. I want to know how to create a redistributable package. We use CR10.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我的建议是创建一个安装程序,它将自动将应用程序的可执行文件及其所有依赖项(包括 Crystal Reports 运行时库)安装到目标计算机上。
您可以使用 Visual Basic 提供的打包和部署向导 6.不过我个人不推荐。
我特别喜欢 Inno Setup,它是一个免费安装程序具有简单、直观的界面,可供许多不同的商业和开源应用程序使用。安装 VB 6 应用程序也很容易。请参阅这篇知识库文章,了解您需要包含在VB 运行时,以及有关如何相应修改安装程序脚本的具体说明。
My suggestion is to create a setup program that will automatically install your application's executable file and all of its dependencies (including the Crystal Reports runtime libraries) onto your target machines.
You could use the Package and Deployment Wizard provided with Visual Basic 6, but I personally wouldn't recommend it.
I'm particularly fond of Inno Setup, which is a free installer with a simple, intuitive interface used by many different commercial and open-source applications. It's easy to use to install VB 6 applications, as well. See this knowledge base article for a listing of the DLLs you need to include as part of the VB runtime, and specific instructions on how to modify the installer script accordingly.
如该链接所述,您需要部署 Crystal Reports 运行时:
http://resources。 Businessobjects.com/support/additional_downloads/runtime.asp
As explained in this link, you need to deploy the Crystal Reports Runtime:
http://resources.businessobjects.com/support/additional_downloads/runtime.asp