当前位置:网站首页>Upgrade VS2008 crystal report to the corresponding version of vs2013

Upgrade VS2008 crystal report to the corresponding version of vs2013

2022-06-22 19:45:00 ying1979

Download from the official website  CRforVS_13_0_9.exe

http://downloads.businessobjects.com/akdlm/cr4vs2010/CRforVS_13_0_9.exe

After installation vs2013 Open the project , It will automatically prompt , Upgrade to a new version .

Crystal report error :bobj is not defined

from :http://www.cnblogs.com/bx-paper/archive/2013/03/08/2949445.html


Later installed 10 Version of crystal report , Error reported by publishing to the server , Local configuration is not required

Solution :

1. Copy C:\inetpub\wwwroot\aspnet_client\system_web\4_0_30319\crystalreportviewers13 ( Install first CRforVS_redist_install_32bit_13_0.exe) Go to your project folder (ProjectName/crystalreportviewers13)

2. To configure WebConfig

<configSections>
    <sectionGroup name="businessObjects">
      <sectionGroup name="crystalReports">
        <section name="rptBuildProvider" type="CrystalDecisions.Shared.RptBuildProviderHandler, CrystalDecisions.Shared, Version=13.0.2000.0,Culture=neutral, PublicKeyToken=692fbea5521e1304, Custom=null" />
        <section name="crystalReportViewer" type="System.Configuration.NameValueSectionHandler" />
      </sectionGroup>
    </sectionGroup>
  </configSections>
  <businessObjects>
    <crystalReports>
      <rptBuildProvider>
        <add embedRptInResource="true" />
      </rptBuildProvider>
      <crystalReportViewer>
        <add key="ResourceUri" value="/crystalreportviewers13" />
      </crystalReportViewer>
    </crystalReports>
  </businessObjects>



from :http://www.educity.cn/wenda/234945.html

A strange question About CrystalReportViewer
Cannot be set declaratively “DisplayGroupTree” attribute .

<CR:CrystalReportViewer ID="rv" runat="server" AutoDataBind="false" HasCrystalLogo="False"
That's ok  205:               Width="350px" Height="50px"   HasRefreshButton="True" 
That's ok  206:               DisplayToolbar="False" DisplayGroupTree="False"
Why does this happen   How to solve    Ask the master to answer

this.crystalReportViewer1.DisplayGroupTree = false; 
lsjkcsj     2014-05-28     



原网站

版权声明
本文为[ying1979]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/173/202206221822086575.html