FileNotFoundException occured while assign DataSource in CrystalReport(在 CrystalReport 中分配 DataSource 时发生 FileNotFoundException)
问题描述
在报告中分配数据源时抛出 System.IO.FileNotFoundException execption.我正在使用 Visual Studio 2013、C# 4.5、WinForm 应用程序.我已经为 Visual Studio 13 安装了 Crystal Report.
System.IO.FileNotFoundException execption thrown while assigning data source in report. I am using visual studio 2013, C# 4.5, WinForm application. I have installed crystal report for visual studio 13.
这是代码
DataSet ds = new DataSet();
ds.Tables.Add(new DataTable("administration_CashDeskManager_Reports_ReportDataBusinessObject"));
ds.Tables.Add(new DataTable("administration_CashDeskManager_Reports_ReportDataDetailBusinessObject"));
Reports.CrystalReport.rptCashDeskTransactionLog Report = new Reports.CrystalReport.rptCashDeskTransactionLog();
Report.SetDataSource(ds);
crViewer.ReportSource = Report;
Report.SetDataSource(ds) 命令引发错误.
我认为这个错误是特定于版本的错误.
I think this error is version specific error.
异常详情:
System.IO.FileNotFoundException"类型的未处理异常发生在 mscorlib.dll 中
An unhandled exception of type 'System.IO.FileNotFoundException' occurred in mscorlib.dll
附加信息:无法加载文件或程序集'file:///C:Program FilesSAP BusinessObjectsCrystal Reports for .NET框架 4.0CommonSAP BusinessObjects Enterprise XI4.0win32_x86dotnet1crdb_adoplus.dll' 或其依赖项之一.系统找不到指定的文件.
Additional information: Could not load file or assembly 'file:///C:Program FilesSAP BusinessObjectsCrystal Reports for .NET Framework 4.0CommonSAP BusinessObjects Enterprise XI 4.0win32_x86dotnet1crdb_adoplus.dll' or one of its dependencies. The system cannot find the file specified.
推荐答案
在您的配置中添加以下部分后重试:
Try again after adding below section in your config:
<startup uselegacyv2runtimeactivationpolicy="true">
<supportedruntime version="v4.0" />
</startup>
这篇关于在 CrystalReport 中分配 DataSource 时发生 FileNotFoundException的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 CrystalReport 中分配 DataSource 时发生 FileNotFoundException
- 是否可以在 .Net 3.5 中进行通用控件? 2022-01-01
- 为什么 C# 中的堆栈大小正好是 1 MB? 2022-01-01
- 使用 rss + c# 2022-01-01
- Azure Active Directory 与 MVC,客户端和资源标识同一 2022-01-01
- CanBeNull和ReSharper-将其用于异步任务? 2022-01-01
- Windows 喜欢在 LINUX 中使用 MONO 进行服务开发? 2022-01-01
- 在 LINQ to SQL 中使用 contains() 2022-01-01
- 在 C# 中异步处理项目队列 2022-01-01
- 带问号的 nvarchar 列结果 2022-01-01
- C# 通过连接字符串检索正确的 DbConnection 对象 2022-01-01