CRVS2010 beta - Suppress dialogbox on refresh

I'm using the beta version of the WPF Viewer for Crystal Reports release for visual studio 2010 version.
However, when I programmaticaly update my parameters and want to refresh a report, it asks me if I want to keep te parameters or prompt for new parameters. Is there any way to turn this of?
It used to be able to use,
reuseparametersonrefresh = false/true
This is the function i'm using to refresh.
CrystalReportsViewer.ViewerCore.RefreshReport();
Thanks for the help.
With kind regards,
Cyrus

Final Production release is now available. See this thread for more info:
Crystal Reports for Visual Studio 2010 Production Release Now Available

Similar Messages

  • CRVS2010 beta - Date field from database does not display in report

    Hi there - can someone please help?!
    I am getting a problem where a date field from the database does not display in the report viewer (It displays on my dev machine, but not on the client machines...details given below)
    I upgraded to VS 2010
    I am using the CRVS2010 Beta
    My development machine is Windows 7 - and so is my fellow developer's
    We are using Microsoft SQL Server 2000
    We run the queries within VS and then we send the data table to VS using .SetDataSource
    We have a few reports which display the date on our dev machines (whether we run the EXE or from within Visual Studio)
    When we roll out to the client machines (running Windows XP SP3) then everything works, except that the date does not display (on quite a few reports)
    This is the only real issue I have had - a show stopper for me
    The rest works well - any input will be greatly appreciated
    Regards,
    Ridwan

    Hi Ridwan,
    After much testing I have it all working now using CRDB_adoplus.dll as a data source ( XML )
    Alter your Config file to look like this:
    <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0"/>
    </startup>
    Then using the code below, and CR requires the Schema to be able to read the date format.
    private void SetToXML_Click(object sender, EventArgs e)
    CrystalDecisions.CrystalReports.Engine.ReportDocument rpt = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
    ISCDReportClientDocument rcd;
    rcd = rptClientDoc;
    string connString = "Provider=SQLOLEDB;Data Source=dwcb12003;Database=xtreme;User ID=sb;Password=password";
    string sqlString = "Select * From Orders";
    OleDbConnection oleConn = new OleDbConnection(connString);
    OleDbDataAdapter oleAdapter = new OleDbDataAdapter(sqlString, oleConn);
    //OleDbDataAdapter oleAdapter2 = new OleDbDataAdapter(sqlString2, oleConn);
    DataTable dt1 = new DataTable("Orders");
    oleAdapter.Fill(dt1);
    System.Data.DataSet ds = new System.Data.DataSet();
    // We need the schema to get the data formats
    ds.WriteXml("c:
    sc.xml", XmlWriteMode.WriteSchema);
    //Create a new Database Table to replace the reports current table.
    CrystalDecisions.ReportAppServer.DataDefModel.Table boTable = new CrystalDecisions.ReportAppServer.DataDefModel.Table();
    //boMainPropertyBag: These hold the attributes of the tables ConnectionInfo object
    PropertyBag boMainPropertyBag = new PropertyBag();
    //boInnerPropertyBag: These hold the attributes for the QE_LogonProperties
    //In the main property bag (boMainPropertyBag)
    PropertyBag boInnerPropertyBag = new PropertyBag();
    //Set the attributes for the boInnerPropertyBag
    boInnerPropertyBag.Add("File Path ", @"C:\sc.xml");
    boInnerPropertyBag.Add("Internal Connection ID", "{680eee31-a16e-4f48-8efa-8765193dccdd}");
    //Set the attributes for the boMainPropertyBag
    boMainPropertyBag.Add("Database DLL", "crdb_adoplus.dll");
    boMainPropertyBag.Add("QE_DatabaseName", "");
    boMainPropertyBag.Add("QE_DatabaseType", "");
    //Add the QE_LogonProperties we set in the boInnerPropertyBag Object
    boMainPropertyBag.Add("QE_LogonProperties", boInnerPropertyBag);
    boMainPropertyBag.Add("QE_ServerDescription", "NewDataSet");
    boMainPropertyBag.Add("QE_SQLDB", "False");
    boMainPropertyBag.Add("SSO Enabled", "False");
    //Create a new ConnectionInfo object
    CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo boConnectionInfo =
    new CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo();
    //Pass the database properties to a connection info object
    boConnectionInfo.Attributes = boMainPropertyBag;
    //Set the connection kind
    boConnectionInfo.Kind = CrConnectionInfoKindEnum.crConnectionInfoKindCRQE;
    //*EDIT* Set the User Name and Password if required.
    boConnectionInfo.UserName = "";
    boConnectionInfo.Password = "";
    //Pass the connection information to the table
    boTable.ConnectionInfo = boConnectionInfo;
    //Get the Database Tables Collection for your report
    CrystalDecisions.ReportAppServer.DataDefModel.Tables boTables;
    boTables = rptClientDoc.DatabaseController.Database.Tables;
    //For each table in the report:
    // - Set the Table Name properties.
    // - Set the table location in the report to use the new modified table
    boTable.Name = "Orders";
    boTable.QualifiedName = "Orders";
    boTable.Alias = "Orders";
    rptClientDoc.DatabaseController.SetTableLocation(boTables[0], boTable);
    //Verify the database after adding substituting the new table.
    //To ensure that the table updates properly when adding Command tables or Stored Procedures.
    rptClientDoc.VerifyDatabase();
    MessageBox.Show("Data Source Set", "RAS", MessageBoxButtons.OK, MessageBoxIcon.Information);
    Thanks again
    Don

  • CRVS2010 Beta 2 Pie chart legend displaying "_e_Total:1_n_pseudoloc_"

    Instead of displaying "Total" at the bottom of my pie chart legend I am getting the following text: "_e_Total:1_n_pseudoloc_"
    The values and percentages calculate correctly, but the label is unusual.

    Hello,
    I have the same problem with my pie chart. My report was fine before I did my update to CRVS2010 Beta 2. I was using crystal report 11.5.
    My report is really simple. I have a resume chart that you can drilldown. Each drilldown show the same chart for the selected
    item.
    I'm using Windows 7 Professionnel 64 bit in french (canada version).
    Visual Studio Version 10.0.30319.1
    Framework 4.0.30319

  • CRVS2010 Beta 2 - "Database Logon failed" Error, after Upgrade

    Hi,
    Generally: we are using the Crystal Reports in combination with a DataSet, that is filled during runtime and pushed to the report, using "SetDataSource". The Project is an ASP .NET 3.5 Project, published on our server.
    I upgraded my development-machine to CRVS2010 (installed both packages - the CRVS for VS 2010 and the runtime) last week and changed some fields in the Report. The DataSet was left unchanged. Everything is working well on my development-machine, but when I publish the Project to our server, I get an "Databse Logon failed" Error, when I want to create my Report. The CRVS2010 Beta 2 redist Runtime is installed on our server. Here is the code, we use:
    // create new Report
    var report = new Reports.repMyReport();
    // DataSource ds was filled correctly (we checked with export to XML
    report.SetDataSource(ds);
    // Set several Parameters to Report
    report.SetParameterValue("test", "test");
    // Export Report to PDF-Format and open in Browser
    report.ExportToHttpResponse(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat, Response, false, "reportName.pdf");
    Response.End();
    The error I get is:
    Database logon failed.
    [COMException (0x8004100f): Database logon failed.]
       CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.Export(ExportOptions pExportOptions, RequestContext pRequestContext) +0
       CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext) +260
    [LogOnException: Database logon failed.]
       CrystalDecisions.ReportAppServer.ConvertDotNetToErom.ThrowDotNetException(Exception e) +325
       CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext) +315
       CrystalDecisions.CrystalReports.Engine.FormatEngine.ExportToStream(ExportRequestContext reqContext) +650
       CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToStream(ExportOptions options) +98
       CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToHttpResponse(ExportOptions options, HttpResponse response, Boolean asAttachment, String attachmentName) +98
       CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToHttpResponse(ExportFormatType formatType, HttpResponse response, Boolean asAttachment, String attachmentName) +124
       SprintBoxWeb.BuchungDruck.Page_Load(Object sender, EventArgs e) in D:\Projects\sprnt_erp\SprintBoxWeb\BuchungDruck.aspx.cs:32
       System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) +14
       System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +35
       System.Web.UI.Control.OnLoad(EventArgs e) +99
       System.Web.UI.Control.LoadRecursive() +50
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +627
    I already tried everything, found googling the web and/or searching this forum:
    e.g.: perform "verify Database" on all Reports and map the DataSet.xsd again to the Report
    Is that a known issue on the Beta and we should wait for the RC, or does anyone have an idea how to fix that one?
    This error is really annoying!
    Many thanks for your help.
    kind regards
    Reinhard

    Dear Ludek,
    Many thanks for your quick reply. Currently, I have to finish some other things. I will try your ideas next week and give you some feedback then, to keep you informed.
    best regards,
    Reinhard

  • CRVS2010 Beta - Unable to Install CR  Beta 2 for Visual Studio 2010.

    I am unable to install Crystal Reports for VS2010.  "Failed to update cache for execution."
    There is a similar thread (locked) with this problem.  (CRVS2010 beta 2 - error during install)
    I have tried everything from this tread, and everything else I can think of.  I am out of options. 
    I appreciate any help.
    Thanks,
    MF
    OS: Windows XP SP(3).
    Running on local drive with Administrator ID.
    (Tail of SETUPENGINE.LOG)
    17:27:38.765 Cache: DU files cached in: C:\Program Files\SAP BusinessObjects\InstallData\InstallCache\tp.rosette-4.0-core-32\0\
    17:27:38.796 Cache: copying files from: C:\cr4vs2010\dunit\tp.sap.ncs-4.0-core-32\
    17:27:38.843 Cache: DU files cached in: C:\Program Files\SAP BusinessObjects\InstallData\InstallCache\tp.sap.ncs-4.0-core-32\0\
    17:27:38.890 Cache: copying files from: C:\cr4vs2010\dunit\tp.curl.cpp-4.0-core-32\
    17:27:38.984 Cache: DU files cached in: C:\Program Files\SAP BusinessObjects\InstallData\InstallCache\tp.curl.cpp-4.0-core-32\0\
    17:27:39.031 Cache: copying files from: C:\cr4vs2010\dunit\tp.sap.nwrfc-4.0-core-32\
    17:27:39.546 Cache: DU files cached in: C:\Program Files\SAP BusinessObjects\InstallData\InstallCache\tp.sap.nwrfc-4.0-core-32\0\
    17:27:39.625 Cache: copying files from: C:\cr4vs2010\dunit\tp.ooc.dotnet-4.0-core-32\
    17:27:39.796 Cache: DU files cached in: C:\Program Files\SAP BusinessObjects\InstallData\InstallCache\tp.ooc.dotnet-4.0-core-32\0\
    17:27:39.937 Cache: copying files from: C:\cr4vs2010\dunit\tp.pkware.cpp-4.0-core-32\
    17:27:40.140 Cache: DU files cached in: C:\Program Files\SAP BusinessObjects\InstallData\InstallCache\tp.pkware.cpp-4.0-core-32\0\
    17:27:40.203 Cache: copying files from: C:\cr4vs2010\dunit\tp.rsa.crypto-4.0-core-32\
    17:27:40.453 Cache: DU files cached in: C:\Program Files\SAP BusinessObjects\InstallData\InstallCache\tp.rsa.crypto-4.0-core-32\0\
    17:27:40.640 Cache: copying files from: C:\cr4vs2010\dunit\tools.srvtools-4.0-core-32\
    17:27:40.765 Cache: DU files cached in: C:\Program Files\SAP BusinessObjects\InstallData\InstallCache\tools.srvtools-4.0-core-32\0\
    17:27:40.812 Cache: copying files from: C:\cr4vs2010\dunit\foundation.jdsr-4.0-core-nu\
    17:27:40.906 Cache: DU files cached in: C:\Program Files\SAP BusinessObjects\InstallData\InstallCache\foundation.jdsr-4.0-core-nu\0\
    17:27:40.921 Cache: copying files from: C:\cr4vs2010\dunit\tp.azalea.fonts-4.0-core-32\
    17:27:40.953 Cache: DU files cached in: C:\Program Files\SAP BusinessObjects\InstallData\InstallCache\tp.azalea.fonts-4.0-core-32\0\
    17:27:40.968 Cache: copying files from: C:\cr4vs2010\dunit\tp.external.icu-4.0-core-32\
    17:27:41.968 Error: Could not move temp dest folder to dest folder.
    17:27:42.015 Error:   Temp dest folder: C:\Program Files\SAP BusinessObjects\InstallData\tmp\tp.external.icu-4.0-core-32
    17:27:42.078 Error:   Dest folder:    C:\Program Files\SAP BusinessObjects\InstallData\InstallCache\tp.external.icu-4.0-core-32\0\
    17:27:42.109 Error: Cache: error copying files to cache from: C:\cr4vs2010\dunit\tp.external.icu-4.0-core-32\ to: C:\Program Files\SAP BusinessObjects\InstallData\InstallCache\tp.external.icu-4.0-core-32\0\
    17:27:42.156 Error: CacheDUs - failed to cache DUs.
    17:27:42.171 Error: Failed to update cache for execution.  Program will exit.
    (SETUPEXE.LOG)
    17:25:18 Unable to open file :c:\Temp\2010.10.23.17.25.18\setupexe.log
    17:25:18 Welcome to setup.exe!
    17:25:18 Launching SetupEngine.exe: "C:\cr4vs2010\setup.engine\SetupEngine.exe"
    17:25:18 SetupEngine.exe command line:  -engine "C:\cr4vs2010\setup.engine
    " -bootstrapper "C:\cr4vs2010
    " -l "c:\Temp\2010.10.23.17.25.18"

    Hi MF,
    I had a problem with changing my default temp folders installing another third party program, not any CR stuff.
    I changed my temp folders back to the defaults and then it worked. I tried changing the permissions for all users on c:\temp and c:\tmp but that didn't help either for the other program.
    Only way it would work was to use the default temp folder structure.
    Try changing yours back to c:\User\appdata\local\temp
    Clear the temp folder out first and try again.
    Something, not sure if it was Windows or anti-virus or the firewall was blocking access. Odd that it gets part way so likely some third party dependency on that file doesn't like or get to your c:\temp folder.
    Thanks
    Don

  • CRVS2010 Beta - Hyperlinks don't work in textobjects

    I just wanted to report a bug that will hopefully get fixed in the November version of Crystal Reports for Visual Studio 2010.
    HyperLinks do not work!  they cut off any url with a querystring in it.
    Note: I can create one in five seconds in the versions of CR that comes with both Visual Studio 2005 and 2008. 
    Dave.
    Subject modified as per the sticky post at the top of this forum; [Crystal Reports for Visual Studio 2010 Beta - read before posting|Crystal Reports for Visual Studio 2010 Beta - read before posting;
    Edited by: Ludek Uher on Sep 22, 2010 4:13 PM

    I believe this is the same issue as in [CRVS2010 Beta - Problem with HyperLink and Parameters|CRVS2010 Beta - Problem with HyperLink and Parameters;. The issue is also reported in [this|Re: CRVS2010 Beta - Hyperlink translator dropping parm; thread.
    I am not able to reproduce the issue with URL to Yahoo, or Google, etc. If you can provide a publicly available URL that duplicates the issue, I will re-test.
    Ludek

  • CRVS2010 Beta - Cannot find documentation on what needs to be installed

    My question is very elementary but I do not see anything in the release notes, etc. that tells me which of the 3 install files I need to iinstall or do I need to install all of them.
    1 - SAP Crystal Reports, version for Visual Studio 2010
    2 - SAP Crystal Reports runtime engine for .NET Framework 4 (32-bit)
    3 - SAP Crystal Reports runtime engine for .NET Framework 4 (64-bit)
    I want access to the WPF component in VS 2010 on a Win 7 64bit machine
    Do I install all 3?? In what order? 1 - 2 - 3 as I've shown?
    I have Crystal 2008 installed on my machine. Must I uninstall it to use the Crystal VS 2010 beta on that machine.
    To date I tried installing just #1 above. I went into my VS 2010 selected the WPF and it blew up VS 2010, I tried doing the same with Winform and it also took out VS 2010.
    I have since uninstalled everything. Could someone explain the procedure(s) for making the beta available to VS 2010 with a little more detail.
    Thanks

    Hi,
    You might want to check this [thread|Re: CRVS2010 Beta - about downloading file].
    Thanks,
    Saurabh

  • CRVS2010 beta 2 - header underline adding spaces

    Hello,
    I'm noticing that headers that are 2 words and the second word is a number, there is a space/break in the underline
    For example Address 1 instead of Address 1.
    I reported this in beta 1 (see CRVS2010 beta - header underline adding spaces) and hoped that it would have been fixed.
    I'm wondering if it is on the list of things to fix for the final release.
    Thank you.

    I assume you are referring to the embedded designer's preview is breaking the underline betweeen the word and the number (ie: Address 1).  I am able to reproduce with the CR for VS 2010 Beta2. 
    I found that the WinForms and ASP.NET CR runtime viewers do not have this issue but the WPF viewer does have this issue.
    I will log a bug for both issues.
    As a potential workaround, instead of underlining the field, format the object (right-click the object and select Format Object), on the Border tab, set the Bottom line style to "Single".  This is not ideal but it may work for you.
    -Mandeep

  • CRVS2010 Beta - embedded report not showing

    I have a large number of reports which I have written for a client over the years with various versions of Crystal (starting with V5 I think).
    Currently they are running Crystal Enterprise X but have made the decision that they wish to shift to Visual Studio.
    I have been attempting to cut my teeth on re-writing reports in Visual studio and am struggling.  I then decided to port the existing crystal reports across from the Enterprise environment to Visual Studio.
    I have the CRVS2010 Beta installed with the 64-bit runtime on a Server 2008 platform.
    I have testing simpler Crystal Reports within Visual Studio (File | New | Project | Crystal Reports Application) and the simplest seem to publish with no difficulty.
    However I have just attempted to bring a report containing a sub-report and while the end result seemed to publish fine with no errors, only the main report output shows when the published Visual studio application is run.
    I haven't been able to find anything on this in the forum, so would greatly appreciate it if anyone can offer some assistance.
    Slightly off-topic, I have noted that when the Crystal Report is imported into the Visual Studio designer the database seems to get dropped.  I then have to reconnect via ODBC and re-select the tables after which things seem to run fine.  Is this to be expected ?
    Many thanks

    I have been checking further on this issue.
    If I take the report in a fully functional state saved out of Crystal X and import it into the Visual Studio 2010 environment, the functionality of the subreport appears compromised.
    Out of interest (and remembering that the report has been upgraded from Crystal X) I located the Crystal component in the Visual Studio project folder and opened it within Crystal X.  The subreport now no longer runs under the original Crystal X report writer.
    Something appears to have happened between Crystal X and CRVS2010 Beta.
    I'll have a look and see if I can identify what has happened to it.

  • CRVS2010 Beta - Sporadic "This field name is not known. Details: errorKind"

    I am running CRVS2010 Beta 2 on the VS2010 trial version. I have been converting reports to this new version, but sometimes I get the error:
    This field name is not known. Details: errorKind Error in File XX11X1 {1X1111X1-1XX1-1X1X-111X-11111111X11X}.rpt: Error in formula tot-appr: '{@commited0}+{XX11X.AMT1} + {XX11X.AMT2} + {XX11X.AMT3} + {XX11X.AMT4} + {XX11X.AMT_FUT} ' This field name is not known. Details: errorKind
    I have done a lot of searching on this forum, Google, and Bing, but it seems everyone who receives this error message has just created the report or moved it to a new database, and the error is caused by a mis-pointed formula. I don't have that problem: in my case, the report usually works.
    I have tried querying the Oracle database immediately after receiving this error, and all the fields mentioned do exist, exactly where they ought to. The problem never exists when logging on with my own account, and sometimes works when logging on with other accounts, but I have not figured out a way to predict whether it will work or not.
    I have four reports I am running: one always works, two get this sort of error sometimes, and one (which is formatted differently) always shows up without errors, but is sometimes inexplicably blank. I cannot figure out in what way the report that always works is different from the two with this error (aside from obvious issues of layout and querying different tables, I mean).
    I'm at a loss for where to look next. I know this information won't be enough as-is, but I hope that your clarifying questions can help me find the error.
    Thank you for your consideration.
    EDIT: changed database names in case I get in trouble for revealing proprietary information, even though I don't think it's likely
    Edited by: sschaffer on Oct 25, 2010 9:57 PM

    Hello,
    Are you using a data Set? I believe the System.Data.OracleClient is the .NET Oracle client but not sure and not sure how reliable it is or what it's based on.
    What happens if you create a new report using the DataDirect OLE DB provide or Oracles OLE DB provide or use CR Oracle native driver?
    In the Connection Wizard select Oracle, that's the native driver, then when set log on info you just specify the Server name, User and PW, leave the database blank.
    Then what API's are you using to connect/set the log on info?
    I'm guessing that the error you are getting is likely an indexing problem in the table names etc. but not sure. if you search in this forum on "crlogger.dll" you could enable our database logging component and it may give you more info on what the cause is.
    Thank you
    Don

  • CRVS2010 Beta - Can't use the the Runtime for VS 2010 Beta

    Hi,
    I changed my web.config as described in the PDF but I'm always getting this error message:
    Assembly 'my Assembly' uses 'CrystalDecisions.Web, Version=14.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' which has a higher version than referenced assembly 'CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304'
    What's wrong?
    Thanks,
    Michael
    Edited by: MGuder on Apr 22, 2010 11:53 AM
    Edited by: Jonathan Parminter on Apr 22, 2010 7:47 AM

    Hi Guys,
    Are you using the VS 2010 CR for VS2010 plug in and if so is this a Beta issue?
    Or are you using a previous versions of CR runtime in VS 210 issue?
    If it is a VS 2010 and CR plug issue then the subject line needs to be changed to follow the rule for posting beta questions to:
    CRVS2010 Beta - Can't use the the Runtime for VS 2010 Beta
    If it's a migration of existing CR 2008 or previous version of CR application into VS 2010 then it's not supported. CR 2008 and previous versions of CR have not been tested with 4.0 framework and therefore it will not work and no escalation path to make it work at this time, don't upgrade your old projects.
    Thank you
    Don
    Sorry I see Jonathan has already changed the title.
    Edited by: Don Williams on Apr 22, 2010 7:52 AM

  • CRVS2010 Beta - How do i use CR2010 with MVVM

    Hi,
    How do i bind an property of type ReportDocument to Crystal Report Viewer (WPF) trough XAML ?

    See if this thread helps:
    Re: CRVS2010 Beta - WPF CrystalReportsViewer
    Ludek

  • CRVS2010 beta - Why to use useLegacyV2RuntimeActivationPol

    In .NET 4.0, while using Crystal Report 2010 we need to specify useLegacyV2RuntimeActivationPolicy attibute in
    <startup useLegacyV2RuntimeActivationPolicy="true">
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
      </startup>
    because those Crystal Report dll's properties showing Runtime Version as v2.0.50727.
    But why Crystal Report 2010 DLL's are showing v2.0.50727 instead of v4.0?
    I dont want to use useLegacyV2RuntimeActivationPolicy attibute to run my application.
    Can SAP will provide the compaitable version of Crystal Report for .NET 4.0?
    Edited by: Jay _Dixit@Digital on Jul 1, 2010 12:32 PM
    Edited by: Jay _Dixit@Digital on Jul 1, 2010 12:36 PM
    Updated subject line
    Edited by: Don Williams on Jul 1, 2010 11:20 AM

    I would like an update on this issue.
    In other posts SAP representatives have put forward that this won't be addressed in the RTM, stating that this is a 'Microsoft issue'.
    Re: CRVS2010 Beta - file not found error crdb_adoplus.dll
    CRVS2010 Beta - crdb_adoplus.dll not found
    In this thread it sounds like there is something actually being done.
    Using the useLegacyV2RuntimeActivationPolicy=true is very impactful and effectively discards most of the effort put into the CLR 4.0.

  • CRVS2010 Beta- Some Installation files are corrupt

    Hello,
    I am trying to download the CRVS2010 beta.  It downloads and when I run the cr4vs2010.exe I get this error:
    "Some installation files are corrupt.
    Please download a fresh copy and retry the installation"
    I have tried redownloading multiple times with different browsers to no avail.  I need this downloaded ASAP as we have multiple crystal reports that were ported over from VS 2008.
    Please Help.

    Hi Burns,
    I just downloaded from the US link and ran the installer and it worked for me. It extracted all of the files and it appears the setup engine is almost the last file it extracts.
    I believe this is a permission issue. Does it get as far to create this folder:
    C:\Program Files (x86)\SAP BusinessObjects\InstallData\logs
    or any \SAP BusinessObjects folders?
    Try adding the EXE's to the trusted list in your Anti-virus software and/or firewall and or anywhere else Windows may be blocking executables.
    Thank you
    Don

  • CRVS2010 Beta - .CrystalReports.Engine.Table.Friend  -BUG Coding ERR

    Table is is a Constructor in System.Web.UI.WebControls
    http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.table.aspx
    Yet you are using this reserved word in CrystalDecisions.CrystalReports.Engine.Table.Friend Sub New()
    try
    Imports CrystalDecisions.CrystalReports.Engine
    Partial Class tablerror
        Inherits System.Web.UI.Page
        Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
    Dim tbl As Table = New Table()
        End Sub
    End Class
    Updated to inform it's CRVS2010 issue
    Edited by: Don Williams on Oct 30, 2010 8:44 AM

    What other information are you looking for? This is an extremely simple issue to track down.
    http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.table.aspx - is all you need.
    Imports CrystalDecisions.CrystalReports.Engine
    Dim tbl As Table = New Table()
    Try it...
    This IS a BUG with CRVS2010 Beta.

Maybe you are looking for