SAP Crystal Report SetDataSource函数抛出"未处理的异常"

时间:2015-11-14 13:21:29

标签: c# wpf crystal-reports datasource

我在使用c#生成WPF应用程序的VS 2013 SAP Crystal Reports中遇到了问题。我使用以下代码收到以下错误:

CrpInvoice crInv = new CrpInvoice();

crInv.SetDataSource(_lstInvoice); //throwing error here
  

未处理的类型' System.StackOverflowException'发生在WindowsBase.dll

1 个答案:

答案 0 :(得分:0)

Crystal Report是使用早期版本的.NET Framework开发的,您需要将这些行添加到app.config文件中:

<startup  useLegacyV2RuntimeActivationPolicy="true">   
   <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
</startup>