CR Viewer Control Crashes Application

Hi,
I'm using VS2005
The CR that came with VS 2005 and CRSP1
Windows Forms application
Crystal Viewer control dropped on a form
My application behaves correctly on my development computer, but on a target machine the entire application crashes when the user closes the form that has the viewer control.  This happens either if he loads a report or just opens the form and then closes it without running a report.
I deployed the application to the target machine by simply XCOPYing the application's executable.  I did install the CR redist msi file on the target machine.
Is this a possible problem?
Do I need to create a VS deployment msi in order for any references related to the CR viewer control to be installed on the target?

Hi Eric,
Try with creating msi might be some references are missing related to the Crystal Report viewer control.
Best source for runtime is [here|https://www.sdn.sap.com/irj/scn/wiki?path=/display/bobj/crystalReportsforVisualStudio.NETRuntimeDistribution-Versions9.1to12.0]
Compare dlls  on the both the computers
Modules is a good utility for this. Modules can be downloaded from here:
[https://smpdl.sap-ag.de/~sapidp/012002523100006252802008E/modules.zip]
Regards,
Shweta

Similar Messages

  • CR2010 Report Viewer control crashes application when deployed

    I have been using the latest release for CR2010, on a Win 7 x64 machine running VS2010 targeting .Net Framework V4, and all is working fine.
    However, when I publish my WPF application as an x86 client and deploy to a WinXP machine, the Report Viewer control crashes the application.
    Any clues out there?

    Yes there is not much to go on. As I described, the symptom is a crashed application - nothing else I can tell you. When you select a report to load into the Report Viewer control - down it goes with nothing more than a "send this dump to microsoft" message.
    I do have some further enlightenment however. I can deploy the application to the standalone machine straight out of the Release bin and it works fine. Given that is the case I can rule out the CR2010 run time install as the issue. What I suspect is the problem is that the individual report files (.rpt and .cs) are not being packaged by the VS2010 publisher.
    There may be a way to do this, but I do not know of it at this point in time, so I have marked this problem as having been solved, but I would like to know if anyone has a solution to the deployment of CR files using VS Publish.
    Thanks

  • Crystal Reports Viewer Control  - Visual Studio 2008 WEB Application

    My question is this:  Has ANYONE on this planet been able to get the ASP .NET CR Viewer control to actually work?
    Why does this editor NOT recognize End-of-line or CR characters or any whitespace??
    I have developed a Crystal Reports "Viewer" web application in VS2008 using C#.
    It's a simple app, in that it's a single page with a treeview control (containing the grouped names of the reports to which the user has access) and the CR Viewer control.
    The report files live on a network share, and permissions to them is controlled via a SQL Server database, which, for each report, stores the UserID and Logion for the oracle database, as well as any required parameter values.
    The reports themselves are all hititng an Oracle 10g database.
    I managed to do this in a Windows desktop applcation using Visual Studio 2005 and VB .net, but now, upon trying to make this a web application in VS2008, I have completely failed. The application works when run locally, but when deployed to the web server, I experience database login prompts when I should not, (the dreaded "Report requires further information" message) even thought the setdatabaselogin has already been set. I have tried saving the reportdocument in viewstate and re-assigning the viewer Datasource property to it, that also fails. However, it only does it on some reports, and not others. (admittedly, the reports may have been created using different CR versions)
    The viewer also displays data it should not be displaying when I attempt to scroll, when I do manage to get a report to run.
    I am setting parameters dynamically at run time, whose values are stored in the SQL database.
    Code Sample:
    protected void ShowReport(int ReportID)
            SQLDataPortal2005.Common sql = new SQLDataPortal2005.Common();
            Hashtable outParms = new Hashtable();
            string sAccess;
            IDataReader dr;
            CrystalDecisions.CrystalReports.Engine.ReportDocument rptDocument = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
            System.Security.Principal.WindowsPrincipal p = System.Threading.Thread.CurrentPrincipal as System.Security.Principal.WindowsPrincipal;
            sAccess = p.Identity.Name;
            int j = 0;
            int i = -1;
            if (!IsAdmin())
                sql.ExecNonQuery("CrystalReports", outParms, "proc_CRM_Check_Permissions", sAccess, Convert.ToInt32(TreeView1.SelectedNode.Value));
                if (outParms["@Allow"].ToString() != "True")
                   Response.Redirect("ErrorPage.aspx");  // redirect to  error page
            string sPath = System.Configuration.ConfigurationManager.AppSettings["WareHouse"].ToString();
            sPath = sPath + TreeView1.SelectedNode.Text.Trim() + ".rpt";      
            rptDocument.Load(sPath);
            dr = sql.GetDataReader("CrystalReports", "proc_CRM_Get_Report", Convert.ToInt32(TreeView1.SelectedNode.Value));
            while (dr.Read() == true)
                j += 1;
                if (j < 2)
                    rptDocument.SetDatabaseLogon(dr["DB_Login"].ToString(), dr["DB_Pwd"].ToString(), "PLAW", "LAWDB", true);
                    pList = dr["ParmList"].ToString().Split(',');
            dr.Close();
            dr.Dispose();
            if (pList.Length > 0 && pList[0].ToString().Trim() != "")
                foreach (CrystalDecisions.Shared.ParameterField x in rptDocument.ParameterFields)
                    i++;
                    switch (x.ParameterValueType)
                        case CrystalDecisions.Shared.ParameterValueKind.BooleanParameter:
                            rptDocument.SetParameterValue(x.Name, Convert.ToBoolean(pList<i>));
                            break;
                        case CrystalDecisions.Shared.ParameterValueKind.CurrencyParameter:
                            rptDocument.SetParameterValue(x.Name, Convert.ToDouble(pList<i>));
                            break;
                        case CrystalDecisions.Shared.ParameterValueKind.DateParameter:
                            rptDocument.SetParameterValue(x.Name, Convert.ToDateTime(pList<i>));
                            break;
                        case CrystalDecisions.Shared.ParameterValueKind.DateTimeParameter:
                            rptDocument.SetParameterValue(x.Name, Convert.ToDateTime(pList<i>));
                            break;
                        case CrystalDecisions.Shared.ParameterValueKind.NumberParameter:
                            rptDocument.SetParameterValue(x.Name, Convert.ToInt32(pList<i>));
                            break;
                        case CrystalDecisions.Shared.ParameterValueKind.StringParameter:
                            rptDocument.SetParameterValue(x.Name, Convert.ToString(pList<i>));
                            break;
                        case CrystalDecisions.Shared.ParameterValueKind.TimeParameter:
                            rptDocument.SetParameterValue(x.Name, Convert.ToDateTime(pList<i>));
                            break;
            Session["CReport"] = rptDocument;
            CRV1.ReportSource = rptDocument;
            CRV1.DisplayGroupTree = false;
            CRV1.HasRefreshButton = true;
            CRV1.ShowFirstPage();
    Is there a better/different way of accomplishing this very simply process? All I need this application to do is to view a report, while setting it's parmeters (if required) dynamically at run time. I don't EVER want the user to be prompted for DB LOGIN INFO.
    Edited by: RichardK on May 10, 2010 4:14 PM
    Edited by: RichardK on May 10, 2010 4:14 PM
    Edited by: RichardK on May 10, 2010 4:16 PM
    Edited by: RichardK on May 10, 2010 4:18 PM
    Edited by: RichardK on May 10, 2010 4:22 PM
    Edited by: RichardK on May 10, 2010 4:23 PM

    To answer you question; Yes, I suspect that most of the users in this community have managed to successfully create web apps. And this is the tiniest of sampling of the developers out there...
    A few suggestions;
    1) Keep the posts to under 1200 characters. Otherwise, the formatting is lost which makes it difficult to read.
    2) Try out a few sample apps from here:
    https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsfor.NETSDK+Samples
    Suggest; csharp_web_simplelogonengine.zip, csharp_web_simplelogonviewer.zip and csharp_web_subreport_logon.zip.
    3) Start simple; one table, one field, no subreports. Hard code the database logon parameters. Convince your self that this does work. Increase the complexity - add fields, tables, subreports. Do not mix connection methods (e.g.; if ODBC for main, than ODBC for sub is a good idea, though not a requirement).
    4) See the article [Troubleshooting Guide to Database Connectivity Issues with Crystal Reports in Visual Studio .NET Applications|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/b0225775-88c4-2c10-bd80-8298769293de].
    5) See  [this|http://www.sdn.sap.com/irj/boc/go/portal/prtroot/docs/library/uuid/d05b3bb7-0f28-2c10-4ea3-84dbdc4e414e?quicklink=index&overridelayout=true] article.
    6) Consider creating a phone case here:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300
    Ludek
    Follow us on Twitter
    http://twitter.com/SAPCRNetSup

  • Using Application View controls in Workshop

    How can I access a JCA resource adapter in Workshop? The documentation suggests that
    I create an Application View in WLI, then create a Workshop control that is associated
    with it. However, the Workshop documentation says the following about using Application
    View controls:
    Note: In this release, the Application View control is supported only in the sample
    workshop domain. In future versions, support will be provided for enabling the Application
    View control in other domains.
    What does this mean for support of this functionality in this release?

    Thanks very much Raj.
    It solved the problem, and a related one (that I wanted to clean up under "Recent
    Applications" menu item.
    The file is attached.
    "Raj Alagumalai" <[email protected]> wrote:
    Glenn,
    Deleting .workshop.pref file found in c:\doc settings\username will reset
    the view. But before you do that , can you attach the current .workshop.pref
    file ?
    Thanks
    Raj Alagumalai
    Backline Workshop Support
    "Glenn Li" <[email protected]> wrote in message
    news:[email protected]..
    Clicked "View" from menu, then "Application", but the window showsup
    empty, pls
    see attached image.
    Please let me know how to fix if it's known issue. Thanks.
    [previous.workshop.pref]

  • I can not create a Application View Control

    Hi there
    I'm using wli 8.1 y workshop 8.1.4
    I already created my app view using application integration design console,I tested i everything worked fine.
    According to the tutorial steps I published my app view and I got a *-ejb.jar .
    But my problem is when I try to create an Application View Control using Workshop: Add Control > Integration Controls > ApplicationView
    Then I enter the control's name (step 1), Select radio button Create a New ApplicationView control to use, I enter the name but in the step 3, I click in Browse button but I do not see any applciatioin view.
    It suppose my published appview should appear on thet list in order i can create my appview control...
    any idea?
    thx

    I have tried to create an account via ePrintCenter and it seems that the published application has several flaws in interpreting the provided input.
    1) In the Filed for last Name I enter my last name, which consist of only Alph Characters. The form however thinks that there is some sort of special character and rejects my Input.
    2) E-Mail address. is not identical; OK, so I do a quick OCR on the E-Mail and guess what they are identical. Again the form Fails to recognize this.
    3) Enter a password (2 Fields) and a third is displayed which is marked as "*required" but is not labeled as to what the required info could possibly be. Or is it a 3 password confirmation box, who knows.
    All I know is that a simple registration is a major pain with this HP site.
    Any Help as to how to alleviate this would of course be greatly appreciated.

  • How can one develop "view only" client applications in Lookout?This is to develop remote monitoring without control functionality.

    How can one develop "view only" client applications in Lookout?This is to develop remote monitoring without control functionality.
    We have 10 Client Nodes in the field and we need two "View Only" functionality in Client machines located on Supervisory Desks.

    I have done this. There are many ways to approach this but I will offer what I think is the easiest. This will work ONLY if you have been assigning security levels to your objects (objects that actually control devices in the field) greater than zero AND allowing a security level of zero to view all panels. When I develop interfaces I do this just for creating a non control client.
    Basically, you remove all users from the Lookout client in the user manager. You will not be able to remove the built-ins, "Guest" and "Administrator". Now when the end users tries to login using his normal login he will be denied. Consequently, he will not be able to control. But, he will still be able to view all the information since a no login can view a panel with a viewing se
    curity level of zero. You must ensure any pushbuttons that are used to open panels have a security level of zero.
    Now you can copy this security profile by finding the lookout.sec file and copying it to another non-control client computer. In Windows NT this file is located in the system32 directory.
    There are many other ways but I find this the easiest.
    Regards,
    Tommy Scharmann

  • Error testing my Business Process using Application View Control

    Hi there
    i'm using WLS 8.1 SP 4 and Sap Adapter 8.1
    I already could build my app view in app integration design console I can testing and everything works fine.
    I'm using adpater to sap and i able to see the results from SAP
    Now,,, i alreade created my app view control in order to use it in my business process but i get the following error:
    <Mar 3, 2006 10:34:53 AM CST> <Warning> <WLW> <000000> <Id=appViewControlTPA:0;
    Method=jpd.TPAAppView.serviceTPACompanyList(); Failure=com.bea.wlai.client.Appli
    cationViewException: Error invoking service 'serviceTPACompanyList' on Applicati
    onView 'TPAAppView': com.bea.xml.XmlException: Top level QName: {wlai/TPAAppView
    serviceTPACompanyListBAPI_COMPANYCODE_GETLIST_request}CompanyCode.GetList.Resp
    onse does not match the expected top level qname: {wlai/TPAAppView_serviceTPACom
    panyList_BAPI_COMPANYCODE_GETLIST_response}CompanyCode.GetList.Response in schem
    a type
    com.bea.xml.XmlException: Top level QName: {wlai/TPAAppView_serviceTPACompanyLis
    t_BAPI_COMPANYCODE_GETLIST_request}CompanyCode.GetList.Response does not match t
    he expected top level qname: {wlai/TPAAppView_serviceTPACompanyList_BAPI_COMPANY
    CODE_GETLIST_response}CompanyCode.GetList.Response in schema type
    at com.bea.wli.variables.XmlObjectVariableFactory.createProxy(Lcom.bea.w
    li.variables.ProcessXML;Ljava.lang.Class;Z)Lcom.bea.xml.XmlObject;(XmlObjectVari
    ableFactory.java:137)
    at com.bea.wli.variables.XmlObjectVariableFactory.createProxy(Lcom.bea.w
    li.variables.ProcessXML;Ljava.lang.Class;)Lcom.bea.xml.XmlObject;(XmlObjectVaria
    bleFactory.java:199).............
    these are my schemas:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema elementFormDefault="unqualified"
    targetNamespace="wlai/TPAAppView_serviceTPACompanyList_BAPI_COMPANYCODE_GETLIST_request"
    xmlns="wlai/TPAAppView_serviceTPACompanyList_BAPI_COMPANYCODE_GETLIST_request"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:complexType name="BAPI0002_1">
    <xsd:sequence>
    <xsd:element name="COMP_CODE">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="4"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="COMP_NAME">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="25"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:element name="CompanyCode.GetList">
    <xsd:complexType>
    <xsd:all>
    <xsd:element minOccurs="0"
    name="COMPANYCODE_LIST">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element maxOccurs="unbounded"
    minOccurs="0"
    name="item"
    type="BAPI0002_1"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:all>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema elementFormDefault="unqualified"
    targetNamespace="wlai/TPAAppView_serviceTPACompanyList_BAPI_COMPANYCODE_GETLIST_response"
    xmlns="wlai/TPAAppView_serviceTPACompanyList_BAPI_COMPANYCODE_GETLIST_response"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:complexType name="BAPIRETURN">
    <xsd:sequence>
    <xsd:element name="TYPE">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="1"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="CODE">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="5"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="MESSAGE">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="220"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="LOG_NO">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="20"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="LOG_MSG_NO">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="6"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="MESSAGE_V1">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="50"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="MESSAGE_V2">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="50"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="MESSAGE_V3">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="50"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="MESSAGE_V4">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="50"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="BAPI0002_1">
    <xsd:sequence>
    <xsd:element name="COMP_CODE">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="4"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    <xsd:element name="COMP_NAME">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:maxLength value="25"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:element name="CompanyCode.GetList.Response">
    <xsd:complexType>
    <xsd:all>
    <xsd:element minOccurs="0"
    name="RETURN"
    type="BAPIRETURN"/>
    <xsd:element minOccurs="0"
    name="COMPANYCODE_LIST">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element maxOccurs="unbounded"
    minOccurs="0"
    name="item"
    type="BAPI0002_1"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:all>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    and this is my xml i'm using as a request:
    <?xml version="1.0" encoding="UTF-8"?>
    <n1:CompanyCode.GetList xmlns:n1="wlai/TPAAppView_serviceTPACompanyList_BAPI_COMPANYCODE_GETLIST_request" xmlns:xsi="http://www.w3.org/2001/XMLSchema" xsi:schemaLocation="wlai/TPAAppView_serviceTPACompanyList_BAPI_COMPANYCODE_GETLIST_request">
         <COMPANYCODE_LIST>
              <item>
                   <COMP_CODE/>
                   <COMP_NAME/>
              </item>
         </COMPANYCODE_LIST>
    </n1:CompanyCode.GetList>
    i do not what it is wrong and i don't understand why i can test my app view since app int desing console succesfully but i get an error running my business process using workshop
    any idea?

    Try to send some valid data in COMP_CODE.
    It seems that SAP is returning some reply which is not fitting your response Schema.
    SAP Call is made and problem is in generating response document.
    Use the design console to test the view again. and try to see the XML resquest document and response document. Compare your request xml with that in design console.

  • Unable to view the "Discovery Application" section under studio.

    Hello,
    I have installed OEID 3.0, using integrator I have loaded the sample getting started application to the server successfully.
    I am following the instructions given under the getting started guide, after loading the data to the server I am able to login successfully to studio http://localhost:8101.
    However in the login screen I am getting only the "welcome Admin Admin!" menu, under which I am unable to see the Discovery Application section.
    But I followed the guide to access the control panel and change the default datasource, as per the guide I clicked "Back to home" but still Discovery Application section is not visible.
    Which is obviously used for creating and managing the applications.
    But I managed to create the application by selecting control panel > Portal > Application and I created the application and managed to load the EID_3.0_SampleApp.LAR file and able to successfully launch the studio.
    Can anyone kindly let me know why I am unable to view the discovery application section till now?
    Thanks.

    I don't completely follow yet what you are seeing in your Studio instance. Is your "Discovery Applications" panel not showing, or is it empty, or is the "New Application" button missing? Perhaps you could paste a screenshot somewhere and link it here.
    You say you are having problems with datasources - could you paste your data source JSON, and any error messages you are getting in the Studio logs?

  • Problem on using Crystal Report Viewer on windows application ("specified type is not valid ")

    Hi
    I am having problem on using Crystal Report Viewer on one of my windows application.
    I am not sure how to put the Crystal Report Viewer 11 Control onto the tool box.
    I could found a Crystal Report Viewer control on my computer, but it is version 8.5.
    I have also found another one which is Called Crytal ActiveX Report Viewer, i don't think it is the one I can use. As when I try to load a dummy report on to the Crytal ActiveX Report Viewer, It return an error. "specified type is not valid"
    Please see the Code sample below.
    private sub loadReport()
         Dim r as New ReportDocument
         'v is the name of the Crystal ActiveX Report Viewer Control
         r.Load("C:\Report1.rtp")
         v.ReportSource(r) <---It throw error on this line.
    End Sub
    Could you give me some advice about what have I done wrong, How to check if I have set up the Crystal Report Component correctly in my Visual Studio 2005 Standard edition.
    Thanks in advances.
    Many thanks
    Chi

    VS 2005 Standard and Express editions do not come with Crystal Reports; only the Professional and higher editions will have CR bundled. However, I believe you can purchase CR XI R2 Developer and it will give you the components you need to create a VS .NET 2005 application using the Standard edition.
    -MJ

  • Problem in crystal report viewer control's toolbar "export"button using SSL

    Hi,
    I would like to ask. My project is using BO XI Release 2 and VS-Studio 2005. Initially my project doesn't use SSL... At that time when i view the report with crystal report viewer control and can export (using built-in toolbar "export button"). Now project is using SSL and canu2019t export the error is
    u201CInternet Explorer cannot download file from server.
    Internet Explorer was not able to open this Internet site. The requested site is either unavailable or cannot be found. Please try again later.u201D
    Actually this error can solve "Cache-control" change to "no-cache". But I donu2019t know in crystal reportu2026
    Anyone can help ???
    Thanks

    In Internet Explorer, go to Tools -> Internet Options -> Advanced and ensure "Do not save encrypted pages to disk" is unchecked.
    Default is to have that option checked. 
    It was considered a IE security issue that IE saves all content to temp disk location unencrypted, even those pages served by HTTPS (for example, let's say you use HTTPS to download your bank info, and it's stored to temp disk for someone else to retrieve later).  So more recent versions of IE implemented that option setting.
    How that option setting works is strange - it downloads the file, saves to disk, then deletes the copy from the disk immediately, before passing it to the application responsible for the MIME type.  So the application tries to open a directory path to a non-existing file.
    Issue is specific to IE, and it's not something you can control via the SDK.
    Sincerely,
    Ted Ueda

  • Crystal Report Viewer Control error

    Please Help, I have a web application developed in .net 2005 which is using crystal reports developer product version 10.0.0.533.
    This web application with crystal is working fine on my local machine with OS windows xp, but on the windows server 2003 the application web form is running into "couldnot load file or assembly 'CrystalDecision.VSDesigner, Version=10.0.0.3300' or one of its dependencies"
    I have compared the assembly information of my local machine with that of the server and could not see the crystaldecision.vsdesigner version 10.0.0.3300 on the server 2003. I have uninstalled microsoft .net 2005 and crystal reports and installed crystal first and visual studio .net 2005 next and vice versa but still could not see that particular assembly available in the windows 2003 server.
    Please suggest as what to do for the assembly to be available on the server so crystal report viewer control can be created with out error. Thanks for any help.

    Hello Sunitha,
    Visual Studios 2005 ships with a bundled edition of Crystal Reports.  This bundled edition is based on the v10 code stream, but it is not CR10.  It's CR.NET for Visual Studios and it's v10.2. Crystal Reports 10.0 and the bundled CR.NET 10.2 for VS2005 are not interchangeable.
    The stand alone version of Crystal Reports 10 is not expected to integrate correctly into VS2005.  If you have CR10 Developer installed on your VS2005 machine you can force VS2005 to use the CR10.0 assemblies, but it is not supported.
    You need to clean up your application so that it's referencing the 10.2 version assemblies and then deploy the 10.2 runtime files.  You can visit the [Crystal Reports for Visual Studio .NET Runtime Distribution - Versions 9.1 to 12.0|https://www.sdn.sap.com/irj/scn/wiki?path=/display/bobj/crystalReportsruntimeforVisualStudio.NET] Wiki for a nice overview of the various versions of Crystal Reports, as well as a listing of the runtime files to match the version of Crystal Reports that is being used.  For VS2005 and bundled CR.NET look at the "CR 10.2 (VS .NET 2005)" section of the Wiki.
    Sincerely,
    Dan Kelleher

  • Report Viewer control in sharepoint 2013 provider hosted app

    sharepointSite/_vti_bin/ReportServer
    We are migrating sp 2010 site to SP 2013 provider hosted app. we are using Report viewer control (version 10.0.0) in .net application app server, And the reporting service is configured in sharepoint site and report is uploaded in the document
    library. We are using claims based authentication
    ReportViewer1.ServerReport.ReportServerUrl =
    newUri("sharepointSite/_vti_bin/ReportServer");
    ReportViewer1.ServerReport.ReportPath = @"sharepointSite/_vti_bin/ReportServer?sharepointSite/Reports/Report1.rdl";
    and am getting an error
    ReportServerException: For more information about this error navigate to the report server on the local server machine, or enable remote errors]
    [ReportServerException: The user does not exist or is not unique.]
    [ReportServerException: Report Server has encountered a SharePoint error. (rsSharePointError)]
       Microsoft.Reporting.WebForms.ServerReportSoapProxy.OnSoapException(SoapException e) +82
       Microsoft.Reporting.WebForms.Internal.Soap.ReportingServices2005.Execution.ProxyMethodInvocation.Execute(RSExecutionConnection connection, ProxyMethod`1 initialMethod,
    ProxyMethod`1 retryMethod) +770
       Microsoft.Reporting.WebForms.ServerReport.EnsureExecutionSession() +105
       Microsoft.Reporting.WebForms.ServerReport.SetParameters(IEnumerable`1 parameters) +163
       BP.SDC.eXPP.UIAppsWeb.UserControls.Baseline.ProgressDashboard.RefreshDashboardReport(Int32 userRoadMapDisciplineId, String roadmapSection)
    System.Web.UI.Page.ProcessRequestMain(Boolean
    includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3804
    Can you please help me to solve this issue

    Hi,
    According to your post, my understanding is that you had issues about the provider hosted app.
    Per the error, the issue may be related to the permission issue.
    For a better troubleshooting, we can check with the following steps.
    To norrow down the issue, please create a new and clean app to test whether it has the same issue.
    You can check the ULS log to see if anything unexpected occurred when you deploy the app and open the site page.
    For SharePoint 2013, by default, ULS log is at
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS
    You can check the ULS log by the methods here:
    http://blogs.msdn.com/b/opal/archive/2009/12/22/uls-viewer-for-sharepoint-2010-troubleshooting.aspx
    http://msdn.microsoft.com/en-us/library/gg193966(v=office.14).aspx
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • IE script to open multiple tabs in quick tab view (control Q)

    First thanks Scripting Guys for all the great information provided by this forum!  I'm using Windows 7 Internet Explorer 8.  I'm looking for a VB Script that when lauched opens multiple webpages in one browser, so each page has it's own tab and
    I need it to open in Quick Tab view (control Q).  When users launch the script it will open a page with all the home pages visible.  Thanks for any help you guys provide.

    I did find some script that somewhat works, the position of the browser is messed up if I have other tabs open it will be added on, but I need it in a seperate browser, and I still need to change view to Quick Tab.
    '***This Browser Window Posistion***
    Option Explicit
    Dim navOpenInNewTab : navOpenInNewTab = &h0800
    Dim navOpenNewForegroundTab : navOpenNewForegroundTab = &h10000
    Dim surl : surl="http://www.yahoo.com"
    Dim sur2 : sur2="http://www.cnn.com"
    Dim count : count = 0
    Dim objIE : Set objIE = Wscript.CreateObject("InternetExplorer.Application","objIE_")
    objIE.Visible = True
    objIE.top = 0
    objIE.left = 1370
    objIE.Height = 770
    objIE.Width = 650
    '=======================================
    '***Open web tool Main Browser***
    objIE.Navigate surl
    Wscript.Sleep 2000
    objIE.navigate2 sur2, 2048
    Wscript.Sleep 2000

  • PDF viewer control Problem

    I have problem with Windows Vista Os in 64 bit.The problem is that i have a webbrowser control in Windows application in VS2005 for displaying PDF file.Its working fine in 32 bit operating system.The PDF file is shown within the control.But when i deploy the application in 64 bit Vista operating system,its give an error and the pdf is open in new window.Please can you provide any PDF viewer control that is free and compatible with VS2005,so that pdf should open in that control and is compatible with both 32 bit and 64 bit OS.

    Looks like you need
    Acrobat Scripting Forum http://forums.adobe.com/community/acrobat/acrobat_scripting
    or
    Acrobat SDK Developer Forum http://forums.adobe.com/community/acrobat/acrobat_sdk

  • Help needed to load a viewer control in Access

    Hi,
    I'm having a problem viewing a Crystal Report in Access.  The code looks like this:
    Dim crApp As New CRAXDRT.Application
    Dim crRep As CRAXDRT.Report
      'load a standalone report created in the designer
        Set crRep = crApp.OpenReport("c:\fax\database\reports\PO.rpt")
      CRViewer91.ReportSource = crRep
      ' print preview
      CRViewer91.ViewReport
    I'm loading CRADXDRT from CRADXDRT9.DLL.  The report viewer control is called "Crystal Report Viewer Control 9, which i believe is coming from CRVIEWER9.DLL.
    When I step through my code, CRADCDRT seems to load fine, however when I execute the CRViewer91.ViewReport step, the program seems to execute the code, but doesn't display any report.
    My question is:  am I using the correct control?  I have CR9 and 11 on my system.  I also have VB, which I believe also has a version of CR.  I'm trying to use 9, which is what the report was written in. 
    Thanks for your help.

    No it is not. The crviewer was part of the RDC which is now retired. The last version to ship the RDC was 11.5.
    See the [statement of direction|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/80bd35e5-c71d-2b10-4593-d09907d95289] for more details.
    Ludek

Maybe you are looking for