<bdo id='lnvXE'></bdo><ul id='lnvXE'></ul>
  • <small id='lnvXE'></small><noframes id='lnvXE'>

  • <i id='lnvXE'><tr id='lnvXE'><dt id='lnvXE'><q id='lnvXE'><span id='lnvXE'><b id='lnvXE'><form id='lnvXE'><ins id='lnvXE'></ins><ul id='lnvXE'></ul><sub id='lnvXE'></sub></form><legend id='lnvXE'></legend><bdo id='lnvXE'><pre id='lnvXE'><center id='lnvXE'></center></pre></bdo></b><th id='lnvXE'></th></span></q></dt></tr></i><div id='lnvXE'><tfoot id='lnvXE'></tfoot><dl id='lnvXE'><fieldset id='lnvXE'></fieldset></dl></div>
  • <legend id='lnvXE'><style id='lnvXE'><dir id='lnvXE'><q id='lnvXE'></q></dir></style></legend>

      1. <tfoot id='lnvXE'></tfoot>

        不同版本的 Crystal Reports 运行时

        Different versions of Crystal Reports runtime(不同版本的 Crystal Reports 运行时)
        <tfoot id='JgrLP'></tfoot>

            <small id='JgrLP'></small><noframes id='JgrLP'>

            <legend id='JgrLP'><style id='JgrLP'><dir id='JgrLP'><q id='JgrLP'></q></dir></style></legend>
            <i id='JgrLP'><tr id='JgrLP'><dt id='JgrLP'><q id='JgrLP'><span id='JgrLP'><b id='JgrLP'><form id='JgrLP'><ins id='JgrLP'></ins><ul id='JgrLP'></ul><sub id='JgrLP'></sub></form><legend id='JgrLP'></legend><bdo id='JgrLP'><pre id='JgrLP'><center id='JgrLP'></center></pre></bdo></b><th id='JgrLP'></th></span></q></dt></tr></i><div id='JgrLP'><tfoot id='JgrLP'></tfoot><dl id='JgrLP'><fieldset id='JgrLP'></fieldset></dl></div>
              <tbody id='JgrLP'></tbody>

              • <bdo id='JgrLP'></bdo><ul id='JgrLP'></ul>
                • 本文介绍了不同版本的 Crystal Reports 运行时的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有两个使用 CR 运行时生成报告的 WinForm 应用程序.安装 CR 运行时 13.20 时,较新的应用程序会抱怨它找不到和加载 CR 13.21 (13.0.350) 程序集.如果我将 CR 运行时升级到 13.21 (13.0.350),那么新应用程序将运行,但旧的应用程序会出错,并指出它无法找到并加载 CR 运行时程序集 13.20 (13.0.200).所有工作站都在 CR 运行时 13.20 上运行,那么如何使在 VS2015 中使用 CR 13.21 环境创建的新应用程序在旧的 CR 运行时上正常运行?

                  I have two WinForm applications that use CR runtime to generate reprts.When CR runtime 13.20 is installed, the newer application will complain that it can't find and load CR 13.21 (13.0.350) assembly. If I upgrade CR runtime to 13.21 (13.0.350) that new application will work but the older one errors out with exception stating that it can't find and load CR runtime assembly 13.20 (13.0.200). All workstations operate on CR runtime 13.20 so how can I make new app created in VS2015 with CR 13.21 environment operate correctly on older CR runtime?

                  推荐答案

                  您可以使用配置文件重定向旧应用程序以使用较新的运行时.使用记事本在旧应用(使用旧版 Crystal 运行时的应用)所在的文件夹中创建一个文件名 your_old_app_exe_name.exe.config:

                  You can use a config file to redirect the old application to use the newer runtime. Use Notepad to create a file name your_old_app_exe_name.exe.config in the folder where your old app (the one that uses the older Crystal runtime) lives:

                  <?xml version="1.0" encoding="utf-8"?>
                  <configuration>
                  <startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup>
                  <runtime>
                    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
                      <dependentAssembly>
                        <assemblyIdentity name="CrystalDecisions.CrystalReports.Engine" publicKeyToken="692fbea5521e1304" culture="neutral"/>
                        <bindingRedirect oldVersion="13.0.2000.0" newVersion="13.0.3500.0"/>
                      </dependentAssembly>
                      <dependentAssembly>
                        <assemblyIdentity name="CrystalDecisions.ReportSource" publicKeyToken="692fbea5521e1304" culture="neutral"/>
                        <bindingRedirect oldVersion="13.0.2000.0" newVersion="13.0.3500.0"/>
                      </dependentAssembly>    
                      <dependentAssembly>
                        <assemblyIdentity name="CrystalDecisions.Shared" publicKeyToken="692fbea5521e1304" culture="neutral"/>
                        <bindingRedirect oldVersion="13.0.2000.0" newVersion="13.0.3500.0"/>
                      </dependentAssembly>
                      <dependentAssembly>
                        <assemblyIdentity name="CrystalDecisions.Web" publicKeyToken="692fbea5521e1304" culture="neutral"/>
                        <bindingRedirect oldVersion="13.0.2000.0" newVersion="13.0.3500.0"/>
                      </dependentAssembly>
                      <dependentAssembly>
                        <assemblyIdentity name="CrystalDecisions.Windows.Forms" publicKeyToken="692fbea5521e1304" culture="neutral"/>
                        <bindingRedirect oldVersion="13.0.2000.0" newVersion="13.0.3500.0"/>
                      </dependentAssembly>
                      <dependentAssembly>
                        <assemblyIdentity name="CrystalDecisions.ReportAppServer.ClientDoc" publicKeyToken="692fbea5521e1304" culture="neutral"/>
                        <bindingRedirect oldVersion="13.0.2000.0" newVersion="13.0.3500.0"/>
                      </dependentAssembly>
                      <dependentAssembly>
                        <assemblyIdentity name="CrystalDecisions.ReportAppServer.CommonControls" publicKeyToken="692fbea5521e1304" culture="neutral"/>
                        <bindingRedirect oldVersion="13.0.2000.0" newVersion="13.0.3500.0"/>
                      </dependentAssembly>
                      <dependentAssembly>
                        <assemblyIdentity name="CrystalDecisions.ReportAppServer.CommonObjectModel" publicKeyToken="692fbea5521e1304" culture="neutral"/>
                        <bindingRedirect oldVersion="13.0.2000.0" newVersion="13.0.3500.0"/>
                      </dependentAssembly>
                      <dependentAssembly>
                        <assemblyIdentity name="CrystalDecisions.ReportAppServer.Controllers" publicKeyToken="692fbea5521e1304" culture="neutral"/>
                        <bindingRedirect oldVersion="13.0.2000.0" newVersion="13.0.3500.0"/>
                      </dependentAssembly>
                      <dependentAssembly>
                        <assemblyIdentity name="CrystalDecisions.ReportAppServer.CubeDefModel" publicKeyToken="692fbea5521e1304" culture="neutral"/>
                        <bindingRedirect oldVersion="13.0.2000.0" newVersion="13.0.3500.0"/>
                      </dependentAssembly>
                      <dependentAssembly>
                        <assemblyIdentity name="CrystalDecisions.ReportAppServer.DataDefModel" publicKeyToken="692fbea5521e1304" culture="neutral"/>
                        <bindingRedirect oldVersion="13.0.2000.0" newVersion="13.0.3500.0"/>
                      </dependentAssembly>
                      <dependentAssembly>
                        <assemblyIdentity name="CrystalDecisions.ReportAppServer.DataSetConversion" publicKeyToken="692fbea5521e1304" culture="neutral"/>
                        <bindingRedirect oldVersion="13.0.2000.0" newVersion="13.0.3500.0"/>
                      </dependentAssembly>    
                      <dependentAssembly>
                        <assemblyIdentity name="CrystalDecisions.ReportAppServer.ObjectFactory" publicKeyToken="692fbea5521e1304" culture="neutral"/>
                        <bindingRedirect oldVersion="13.0.2000.0" newVersion="13.0.3500.0"/>
                      </dependentAssembly>
                      <dependentAssembly>
                        <assemblyIdentity name="CrystalDecisions.ReportAppServer.Prompting" publicKeyToken="692fbea5521e1304" culture="neutral"/>
                        <bindingRedirect oldVersion="13.0.2000.0" newVersion="13.0.3500.0"/>
                      </dependentAssembly>
                      <dependentAssembly>
                        <assemblyIdentity name="CrystalDecisions.ReportAppServer.ReportDefModel" publicKeyToken="692fbea5521e1304" culture="neutral"/>
                        <bindingRedirect oldVersion="13.0.2000.0" newVersion="13.0.3500.0"/>
                      </dependentAssembly>
                      <dependentAssembly>
                        <assemblyIdentity name="CrystalDecisions.ReportAppServer.XmlSerialize" publicKeyToken="692fbea5521e1304" culture="neutral"/>
                        <bindingRedirect oldVersion="13.0.2000.0" newVersion="13.0.3500.0"/>
                      </dependentAssembly>
                    </assemblyBinding>  
                  </runtime>
                  </configuration>
                  

                  这篇关于不同版本的 Crystal Reports 运行时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Adding DbContextOptions in Startup.cs not registering data store(在 Startup.cs 中添加 DbContextOptions 未注册数据存储)
                  Migrate html helpers to ASP.NET Core(将 html 帮助程序迁移到 ASP.NET Core)
                  Conditional validation in MVC.NET Core (RequiredIf)(MVC.NET Core 中的条件验证(RequiredIf))
                  Is it possible to serve static files from outside the wwwroot folder?(是否可以从 wwwroot 文件夹外部提供静态文件?)
                  Working with multiple resultset in .net core(在 .net 核心中使用多个结果集)
                  Where all types for http headers gone in ASP.NET 5?(ASP.NET 5 中所有类型的 http 标头都去了哪里?)

                        <bdo id='tvaGN'></bdo><ul id='tvaGN'></ul>

                            <tbody id='tvaGN'></tbody>
                          • <small id='tvaGN'></small><noframes id='tvaGN'>

                            <i id='tvaGN'><tr id='tvaGN'><dt id='tvaGN'><q id='tvaGN'><span id='tvaGN'><b id='tvaGN'><form id='tvaGN'><ins id='tvaGN'></ins><ul id='tvaGN'></ul><sub id='tvaGN'></sub></form><legend id='tvaGN'></legend><bdo id='tvaGN'><pre id='tvaGN'><center id='tvaGN'></center></pre></bdo></b><th id='tvaGN'></th></span></q></dt></tr></i><div id='tvaGN'><tfoot id='tvaGN'></tfoot><dl id='tvaGN'><fieldset id='tvaGN'></fieldset></dl></div>
                            <tfoot id='tvaGN'></tfoot>
                          • <legend id='tvaGN'><style id='tvaGN'><dir id='tvaGN'><q id='tvaGN'></q></dir></style></legend>