在报告中分配数据源时抛出 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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!