如何通过C#代码检测是否安装了Crystal Reports Basic
我的 C# .NET 应用程序使用 Crystal Report,它依赖于 Visual Studio 2008 的 Crystal Reports Basics。 我如何以编程方式确定它是否已安装。我的目标是向用户显示一条消息以安装 Crystal Report(如果尚未安装)。
My C# .NET application uses Crystal Report which relies on the presence of Crystal Reports Basics for Visual Studio 2008.
How can I programmatically determine, if it's installed or not. My target is to show the User a Message to Install Crystal Report if it's not installed already.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设它已安装到 GAC 中(非常肯定它已安装,但值得检查),您可以递归地检查 %windir%\ assembly 中是否有您感兴趣的文件。如果它们不存在,则抛出消息。
Assuming it installs into the GAC (pretty sure it does, but it's worth checking), you can recursively check %windir%\assembly for the files that you are interested in. If they aren't there, throw the message.