如何通过C#代码检测是否安装了Crystal Reports Basic

发布于 2024-11-19 23:11:48 字数 149 浏览 4 评论 0原文

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

看海 2024-11-26 23:11:48

假设它已安装到 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文