SAP Crystal 报告 SetDataSource 函数抛出 "An unhandled exception"
SAP Crystal Report SetDataSource function throwing "An unhandled exception"
我在 VS 2013 SAP Crystal Reports 使用 c# 制作 WPF 应用程序时遇到问题。我收到以下代码的以下错误:
CrpInvoice crInv = new CrpInvoice();
crInv.SetDataSource(_lstInvoice); //throwing error here
An unhandled exception of type 'System.WhosebugException' occurred in WindowsBase.dll
Crystal 报告是使用较早版本的 .NET Framework 开发的,您需要将这些行添加到您的 app.config 文件中:
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
</startup>
我在 VS 2013 SAP Crystal Reports 使用 c# 制作 WPF 应用程序时遇到问题。我收到以下代码的以下错误:
CrpInvoice crInv = new CrpInvoice();
crInv.SetDataSource(_lstInvoice); //throwing error here
An unhandled exception of type 'System.WhosebugException' occurred in WindowsBase.dll
Crystal 报告是使用较早版本的 .NET Framework 开发的,您需要将这些行添加到您的 app.config 文件中:
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
</startup>