Crystal Report Deployment (VS 2010, VB code)

I am having trouble previewing the report that i created with crystal report. When i tried running the page, it takes a long time to load and nothing seems to appear. I am using the VB codes as listed below. Can someone please help me?
Imports CrystalDecisions.CrystalReports.Engine, CrystalDecisions.Shared, System.Data, System.Data.SqlClient, System.Configuration
Public Class TestingReportView
    Inherits System.Web.UI.Page
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        Dim rptDoc As ReportDocument = New ReportDocument
        Dim ds As DataSet3 = New DataSet3 ' .xsd file name
        Dim dt As DataTable = New DataTable()
        ' Just set the name of data table
        dt.TableName = "Crystal Report Example"
        dt = getAllOrders() ' This function is located below
        ds.Tables(0).Merge(dt)
        ' Your .rpt file path will be below
        rptDoc.Load(Server.MapPath("CrystalReport1.rpt"))
        ' set dataset to the report viewer.
        rptDoc.SetDataSource(ds)
        CrystalReportViewer1.ReportSource = rptDoc
    End Sub
    Public Function getAllOrders() As DataTable
        ' Connection string replcae 'databaseservername' with your db server name
        Dim sqlCon As String = "User ID=sa;PWD=sa; server=servername;INITIAL CATALOG=SampleDB;PERSIST SECURITY INFO=FALSE;Connect Timeout=0"
        Dim con As New SqlConnection(sqlCon)
        Dim cmd As New SqlCommand()
        Dim ds As New DataSet()
        Try
            con.Open()
            ' Stored procedure calling. It is already in sample db.
            cmd.CommandText = "getAllOrders"
            cmd.CommandType = CommandType.StoredProcedure
            cmd.Connection = con
            Dim Adapter As New SqlDataAdapter(cmd)
            Adapter.Fill(ds, "Users")
        Catch ex As Exception
            Throw ex
        Finally
            cmd.Dispose()
            If (con.State <> ConnectionState.Closed) Then con.Close()
        End Try
        Return ds.Tables(0)
    End Function
End Class

Ok.
1) Make sure you are using the full framework 4.0, not the client framework
2) Make sure you are using CR VS2010 SP 2:
http://downloads.businessobjects.com/akdlm/cr4vs2010/CRforVS_13_0_2.exe
3) Take a look at the following:
http://www.sdn.sap.com/irj/scn/elearn?rid=/library/uuid/4053ee51-162a-2d10-b8b0-fdd7a26d5cd2
http://thedatafarm.com/blog/data-access/crystal-reports-and-visual-studio-2010/
4) Download the developer help files:
SAP Crystal Reports .NET API Guide http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/crnet_api_2010_en.zip
SAP Crystal Reports .NET SDK Developer Guide http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/crnet_dg_2010_en.zip
5) Since you are using ADO .NET datasets, see kb [1525432  - Could not load file or assembly 'file:///<Path>crdb_adoplus.dll' or one of its dependencies|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333533323335333433333332%7D.do]
Finally, a small recommendation; find a saved data report, create a new app (win or web), throw a CR viewer on the form and the following code (on page load or page init);
CrystalReportViewer1.ReportSource = <path to your saved data report>. That should give you your 1st success - work form there.
Oh, and make sure your dataset is not over a couple of thousand rows. Otherwise, you will m ore than likely run into memory issues.
- Ludek
Edited by: Ludek Uher on Jan 30, 2012 8:27 AM

Similar Messages

  • Unicode with Crystal Report for VS 2010

    Dear,
    Please help me, I have a big problem with Khmer Unicode to preview in Crystal Report IV 4.0 for Visual Studio 2010.
    (I mean that it shows incorrect fonts), but when I use VS 2008, I always use CRAXTTRD.dll to render Khmer Unicode font, and In the new version of Crystal Report in VS 2010, I don't know how to find CRAXTTRD.dll to privewer reports.
    so what can I do, please give the resolve for me, help.
    Thanks in advanced, and I looking for your reply.
    Sochinda

    OK, once again, you cannot use that dll in VS 2008 or VS 2010. End of story.
    Use our .NET Assemblies and RAS to replace the RDC.
    There are plenty of samples in the below links:
    Root Page
    http://wiki.sdn.sap.com/wiki/display/BOBJ/BusinessObjectsHome
    Enterprise Samples (including managed and unmanaged ras)
    http://wiki.sdn.sap.com/wiki/display/BOBJ/BusinessObjectsSDKSampleApplications
    Non-Enterprise Samples
    http://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsSDKSampleApplications
    Exporting Samples (RAS)
    http://wiki.sdn.sap.com/wiki/display/BOBJ/NETRASSDK+Samples#NETRASSDKSamples-Exporting%2FPrinting
    IF you have any questions please post a new question, but search first and use the developers Help files for more info on each.
    Managed RAS is to connect to a Business Objects Enterprise Server, you can remove that part of the code if it's there.
    Unmanaged RAS is what you'll be using.
    Thank you
    Don

  • CRVS2010 Beta - Licensing for "Crystal Reports for VS 2010"

    Hello,
    We have Crystal reports 2008 developer license which was upgraded from Crystal reports 11 Developer edition.
    We have migrated to VS 2010 and need to use "Crystal Reports for VS 2010". But we only need to use the runtime version of it and are not using the crystal reports designer. Do we need to purchase/upgrade the license? If yes, then could you please let us know the details? 
    Thanks,
    Gulab.
    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 9, 2010 6:56 AM

    CRVS 2010 being a Beta, I am not sure that the licensing details have been worked out yet. However, going by past versions;
    Runtime is free for win apps
    Runtime is free for web apps - as long as these are used internally. See [SAP Crystal Reports Licensing Information|http://www.sap.com/solutions/sap-crystal-solutions/query-reporting-analysis/sapcrystalreports/licensing/index.epx] for more details.
    The above 2 I suspect will be carried over to CRVS 2010 - no guarantees, but this would make sense.
    Runtime for web apps deployed to 3rd parties does require extra licensing. The licensing for versions of CR that bundled with .NET 2006 and .NET 2008 are described here:
    http://support.microsoft.com/kb/317789
    I'll check with Program Management if all of the above applies and confirm once I get an answer.
    Ludek

  • Crystal Reports Visual Studio 2010 Report Viewer Not Rendering

    Hello,
    I was able to get Crystal Reports deployed in a web application in VS 2008 OK, but now I am having trouble with CR and VS 2010. For some reason the data and images for the report are being displayed,  but the report viewer controls and background are not. I am not getting red Xs, the viewer is just not there. I have tried changing my references, I have installed the CR run time, and all permissions are correct. I am trying to get this up and running on the local machine. Has anyone dealt with this problem before?
    thanks.

    See if [this|Report Viewer not displaying on deployment server; thread helps.
    - Ludek

  • Crystal Reports Visual Studio 2010 SP2 Fixed issues

    Hi All,
    Here is the list with fixed issues in Crystal Reports Visual Studio 2010 SP2
    http://www.crystaladvice.com/crystalreports/crystal-reports-2010-sp2
    The following list with issues is fixed:
    1566763 - CRVS2010 WPF Viewer error; "System.NullReferenceException was unhandled" PageControl.OnMouseMove
    1540637 - Error: External component has thrown an exception. Launching the Database Expert in the embedded Crystal Reports designer in Visual Studio
    1544675 - Error; 'Object reference not set to an instance of an object' when using the CR WPF viewer in VS2010
    1578823 - CRVS2010; "Load Report Failed" error when Report is open in any full version of the CR Designer
    1638191 - Using RTL language (Arabic) the CR viewer Group Tree Panel does not display RTL
    1631283 - Error; 'Failed to load database information' when reporting off of file system data
    1553469 - How to enable Database logging in Crystal Reports for Visual Studio 2010
    1299185 - Error: Operation not yet implemented or Failed to Export, when exporting a Crystal Reports to Text format
    1451960 - Null or empty values are not surrounded with delimiter when exported to CSV format
    1659185 - The special Crystal Reports field, 'File Name and Path' shows temp path and temp name when viewing a report
    1452648 - Dynamic Cascading Parameter prompts two times when using the Crystal Reports in VS .NET
    1580338 - When refreshing a report that contains a linked subreport report takes long time to execute
    1659111 - GCHandle left in memory for each open and close of a Crystal Report in VS2010 application
    1356672 - Crystal Reports special field "File Path and Name" displays incorrect information in a Visual Studio .NET application
    1593658 - Impersonation of database Log On credentials failure in report generation when set at runtime in a .NET application
    1661239 - Summary fields are converted to String fields
    1661276 - Using the Crystal Reports SetTableLocation method in VS .NET causes long report processing delays
    1661200 - Not able to copy text from report objects using the Crystal Reports WinForm viewer for VS .NET
    1631722 - Date function in a Selection Formula is removed when running a report in a VS .NET application
    1525822 - Exception "Object reference not set to an instance of an object." thrown when clicking on Parameter Panel button in Crystal Report .NET Windows Form Viewer
    1603082 - Cross-tab background colors not retained when exporting a report to PDF format
    1603154 - Shared variable display the incorrect value in Crystal Reports
    1427747 - Why does a CR .NET SDK web app have problems running on IIS 7 in integrated pipeline mode?
    1545536 - Alignment set to Justify causes broken underline
    Source: Resolved Issues in Service Pack 2 for Crystal Reports for Visual Studio 2010
    With kind regards,
    Pieter Jong
    Crystal Advice
    http://www.crystaladvice.com

    Many thanks for the link Pieter.
    I recently created a wiki that lists all of the fixes, their tracking numbers, associated Kbase numbers, Kbase titles and links to the kbases:
    http://wiki.sdn.sap.com/wiki/x/tgK3Dw
    It's 90% complete. I think I have a few Kbases to do to complete it.
    Now that I think about it, I'll also add the link to the [sticky thread|SP 2 for Crystal Reports for Visual Studio 2010 released!; re. SP2 release.
    - Ludek

  • Crystal Reports for VS 2010 Keeps asking to convert how to stop it?

    I have converted a Web Application from VS2008 to VS2010.  I downloaded and installed the VS2010 Visual Studio version and the conversion seems to have gone alright and after the conversion a dialog box came up to ask if I wanted to convert Crystal reports from a previous version to 2010.  I said yes and everything seems to work including the reports in the converted site.
    However, now every time I open the solution in VS2010 the same dialog box pops up asking me if I want to convert the Crystal Reports to version 2010.  I saw an other similar question by a user but the answers he got were not applicable to my sutuation.
    The environment we have is TFS 2010 based and I created a new branch of the solution in quetsion and did the conversion using VS2010 as described above.
    It may be that I have to make some manula changes to some files to set a flag that the reports are already converted?  I may have to do this manually? 
    So the question is how do I get rid of / disable the dialog box asking me to convert each time.
    P.S. I saw references to a beta version on Crystal Reports for VS2010 I have never had this on my computer.  However, I do have both VS2008 and Crystral Reports 2008 and VS2010 and Crystal Reports 2010 loaded on my computer and I will need both installed for the time being until conversion to VS2010 is complete.

    All I need to know is what it is that the CR for 2010 software looks at to determine that an upgrade is required.
    - Not as simple as that. There are all kinds of variables that may cause the issue; from runtime, to references to web.config to VS2010 and so on...
    1) make sure the config file has only assemblies of version 13.x referenced.
    2) download the [Modules|https://smpdl.sap-ag.de/~sapidp/012002523100006252802008E/modules.zip] utility and see if your project is loading any older versions of CR runtime
    3) uninstall CRVS2010, do a repair on VS2010, reinstall CRVS2010
    - Ludek
    Edited by: Ludek Uher on Oct 26, 2011 10:48 AM

  • Auto execution of Crystal Reports for VS 2010 report

    I'm very new to crystal and I've been searching for some time and can't seem to find a solution to this.  I installed Crystal Reports for VS 2010 and can run a report without any issues.  What I would like to do is basically compile and EXE that when I execute it, it will refresh a report and export it in whatever format and location I specify, without showing any GUI.  This seems like it should be an easy thing to accomplish, but I have had no luck yet.
    Any help is appreciated.
    Thanks,
    Tim

    Hi Tim,
    See these samples:
    Root Page
    http://wiki.sdn.sap.com/wiki/display/BOBJ/BusinessObjectsHome
    Enterprise Samples (including managed and unmanaged ras)
    http://wiki.sdn.sap.com/wiki/display/BOBJ/BusinessObjectsSDKSampleApplications
    Non-Enterprise Samples
    http://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsSDKSampleApplications
    Exporting Samples (RAS)
    http://wiki.sdn.sap.com/wiki/display/BOBJ/NETRASSDK+Samples#NETRASSDKSamples-Exporting%2FPrinting
    Just don't load the report into crystalReportviewer1 and simply export to what ever format you need.
    Your users will need the CR runtime if they want to run your app. If you export to PDF or some other format then they can view the report only. Just share or e-mail the report folder.
    Thank you
    Don

  • CRVS2010 Beta - Drill down functionality for Crystal Report in VS 2010

    I found a limitation with Drill down functinality in crystal Report using VS 2010.
    If report`s section or group has data in furthure section or same group, its work fine, but section/group does not have data, it allows to click on fields for drill down but genrate issue.
    Updated subject line per this Beta post - Crystal Reports for Visual Studio 2010 Beta - read before posting
    Edited by: Don Williams on Oct 16, 2010 12:59 PM

    If you look up you'll see you are now in the "SAP Community Network Forums » Business Intelligence SDK Application Development (SAP BusinessObjects and SAP Crystal Solutions) » .NET - SAP Crystal Reports"  forum.
    But if want the link here it is:
    Thank you
    Don

  • Crystal Report for VS 2010 -  The report page doesn't show in IIS

    Hi all, I get a problem with Crystal Report for VS 2010 (version 13).
    My website is built using VS 2010 (asp.net 4.0) and Crystal Report v13.
    It work okay when I run it in the VS 2010. But when I host my site in the IIS 7, when going to the page that contain the Report, the report show nothing.
    The page is blank except my button I've created to export the Report.
    The weird thing is when I click the my button (export to pdf), it doest export the correct pdf.
    Note that this happens in my development machine: windows 7 32bit.
    I've spent a day figure out problem but still haven't found the problem.
    Hope you can help me.

    Let's start with the viewer. Sounds like the viewer directory is not configured correctly. Use [https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50aa68c0-82dd-2b10-42bf-e5502b45cd3a] article as a guide on how to do this.
    I still do not have info on the following:
    it means even though the crystal report viewer doesn't show, i still can export it's content to pdf.
    With all due respect, think of it this way;
    You're the mechanic. I'm a guy with a car. I text you; I'm sitting in my car. It will not get me to point A. Fix it.
    In a nut shell, that is what you are asking me to do with the export. The more detail you provide, the better. See if you can provide the info re export I requested in my previous post.
    Ludek

  • Crystal Reports for VS 2010  Deployment

    Hi All, I am having trouble with CR deployment. I get the error Crystal report data base logon failed. when I click the verify database in the field explorer I get the error :the proccess can not access the file <my db file> because it is being used by another proccess.
    some of my reports does succeed with verify DB and I get "DB is up do date ".
    question is what causes that behaviour?
    Hagit

    It sounds like the file is being locked by another process.  You may want to run a utility like [Process Explorer|http://technet.microsoft.com/en-us/sysinternals/bb896653] to see if you can see which process that is.

  • Error when opening Crystal Report in VS 2010 IDE

    I recently began receiving the following error when I attempt to open a form containing the crystal reports viewer.
    An error has occurred while attempting to load the Crystal Reports runtime.  Either the Crystal Reports registry key permissions are insufficient, or the Crystal Reports runtime is not installed correctly.  Please install the appropriate Crystal Reports redestributable (CRRedist*.msi) containing the correct version of the Crystal Reports runtime (x86, x64, or Itanium) required.  Please go to http://www.businessobjects.com/support for more information.
    I am able to run the reports from within the development environment but cannot open them in the forms editor.  I have installed Crystal Reports for Visual Studio 2010 SP1 and Visual Studio 2010 SP1 hoping that would solve the problem but to no avail.  I have tried to reinstall multiple times and continue to receive the error.
    I am running on Vista (32 bit).  The project target framework is ".NET Framework 4,   The platform target is set to x86.
    I also now receive errors when I try to run reports after deploying to client PCs but I don't know if that is related or not.

    Uninstall CRVS2010 that you currently have installed.
    To remove the assemblies from the GAC use gacutil. Google will get you a number of links on how to. Also, see the KB [1535325  - How to remove CRVS2010 Beta 2|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333533333335333333323335%7D.do].
    Reinstall CRVS2010 SP1 from here:
    SAP Crystal Reports, developer version for Microsoft Visual Studio: Updates & Runtime Downloads [original link is broken]
    - Ludek

  • Crystal Report Deployment Comaprison

    Post Author: cp_pramodu
    CA Forum: Crystal Reports
    Dear All,
    In my organization, we have an application for generating Adhoc reports from my back end system. My back-end DB is sybase.
    In this application for we are using Crystal report for generating these reports. We have nearly 10 branches and 2 HO. All most all these users uses this application for generating reports. Reports are not embadded in the application, all RPT files are kept in a shared directory in a central server.
    We have installed this Windows application in all the PCs, when user access this report we are loading this report from the shared path.
    Now, we have a plan to with Web mode. Is it worth going with web mode?
    Can any one tell me about the advantages and disadvantages of web mode over this Windows based application.
    Thanks in advance.
    Pramodu. C. P

    Ok.
    1) Make sure you are using the full framework 4.0, not the client framework
    2) Make sure you are using CR VS2010 SP 2:
    http://downloads.businessobjects.com/akdlm/cr4vs2010/CRforVS_13_0_2.exe
    3) Take a look at the following:
    http://www.sdn.sap.com/irj/scn/elearn?rid=/library/uuid/4053ee51-162a-2d10-b8b0-fdd7a26d5cd2
    http://thedatafarm.com/blog/data-access/crystal-reports-and-visual-studio-2010/
    4) Download the developer help files:
    SAP Crystal Reports .NET API Guide http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/crnet_api_2010_en.zip
    SAP Crystal Reports .NET SDK Developer Guide http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/crnet_dg_2010_en.zip
    5) Since you are using ADO .NET datasets, see kb [1525432  - Could not load file or assembly 'file:///<Path>crdb_adoplus.dll' or one of its dependencies|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333533323335333433333332%7D.do]
    Finally, a small recommendation; find a saved data report, create a new app (win or web), throw a CR viewer on the form and the following code (on page load or page init);
    CrystalReportViewer1.ReportSource = <path to your saved data report>. That should give you your 1st success - work form there.
    Oh, and make sure your dataset is not over a couple of thousand rows. Otherwise, you will m ore than likely run into memory issues.
    - Ludek
    Edited by: Ludek Uher on Jan 30, 2012 8:27 AM

  • Crystal Reports for VS 2010 corrupts "some" Thai chars on PDF Export

    Any Thai character that contains a symbol above it (like an umlat in English) gets corrupted when exporting a report to PDF, yet the same report can be exported to Excel or Word without any issue.
    See the following character - once with a symbol above one without:
    ล้ ล
    The PDF file will not display the first character - instead it displays the second character overlayed on a box (like you get when the font does not contain the required character)
    If I create a text field in the Crystal designer, it does the same thing - but when I right click and edit, it displays correctly - until I click out of the field when the problem returns. So this suggests the problem is before the PDF export and maybe with the designer - but then why does it work if i export to Word?
    I have tried may different fonts - including those specifically recommended and used by the Thais, but all have the same issue.
    My work around at the moment is to use Word instead of PDF, as I do not believe there is a configuration change I can make that will resolve the issue, but would love to hear otherwise.
    I am using Crystal Reports for Visual Studio 2010 version 13 running on Windows 7 x64. I have a beta 2 download of v14, but it requires a key code which i do not have, so as yet ahave been unable to verify if this issue is resolved in that version.
    if anyone knows otherwise, please let me know
    Cheers
    Jed

    Thanks Don,
    (Good to know that version 13 I am running is the correct one)
    I have tried many UTF-8 fonts, with largely similar results, but this testing here is with Cordia New - a font largely aimed at Thai Language and the one our Thai customers always use.
    I have confirmed that right click and export from the IDE still shows the box on certain characters - but note that the box does not replace these characters (as would be the case if they were missing) but rather overlays them - which is why my subject includes the word 'corrupt'
    All testing so far in on my Windows 7 development machine - so no user issues are involved
    The code if fairly simple at this stage - define and load a data set - then link it to the report and use the built in export to disk functions:
                    OutboundSummary rpt = new OutboundSummary();
                    rpt.SetDataSource(outboundSummary);
                    string tempDir = Environment.GetEnvironmentVariable("TEMP") + "
                    string filename = tempDir + DateTime.Now.ToString("yyyy-MM-dd HH-mm-ss");
                    rpt.ExportToDisk(ExportFormatType.PortableDocFormat, filename + ".pdf");
                    rpt.ExportToDisk(ExportFormatType.WordForWindows, filename + ".doc");
    If anyone wanted to verify, here is a piece of Thai text that will show the problem
    ผลรวมแฟกซ์ที่ยังอยู่ในคิว
    To better illustrate the problem, the attached image will help
    [IMG]http://i55.tinypic.com/hweh42.jpg[/IMG]
    I am coming to the conclusion that perhaps these characters are not single characters - at least do not appear as such with each font - and perhaps Windows does some magic to make them appear correctly. I can see that Word automatically converts them to a suitable font - i.e. a mixed language text file imports into word with different fonts for different languages - and you cannot change the font to one that does not support the language. I can specify Arial from Crystal which does not contain thai characters at all - but export to word and they show correctly.
    Crystal spits the data out and Word converts it correctly, but acrobat does not - so maybe it is their fault?
    I have all language packs on my machine - and doing Chinese next suggests that even if I find a thai font that worked, it would not work in chinese, so am thinking word or rtf might be the winner.
    Cheers
    Jed

  • Crystal Reports 2011 Installation Issue, key code not valid

    Folks,
    We have just purchased two licenses for the Crystal 2011 upgrade from DigitalRiver.  The installation completes successfully, using one of the two "digital rights" keys that were provided in the confirmation email from DigitalRiver.
    Upon launching Crystal Reports 2011 for the first time, though, we are being prompted with a License Manager window asking to add a key code for Crystal Reports.  We enter the "digital rights" key provided by DigitalRiver, the same one used during the installation [copy and pasted from the email for accuracy] and receive the error message "The key code you just typed is not valid, please try again."
    Canceling this window or clicking Ok simply closes the Crystal Reports application.
    Any assistance in how to get the application running would be helpful.
    Tested Environments:
    Windows 7 Professional SP1, 32bit
    Visual Studio 2010 w/ CR for Visual Studio 2010 installed
    Windows Server 2008 R2, 64bit
    Thanks,
    Jeff

    Follow-up:
    We went through several iterations of installation and finally decided to mix things up to see if we could get a different response from the software.  The items that we performed differently were as follows:
    1.  Ran the setup.exe as administrator [even though we have full admin access as the logged in user]
    2.  Hand typed the digital rights key rather than cut/paste from the email
    3.  Performed a custom installation rather than the default and de-selected all of the SAP and other software integration options.
    The software ran fine without prompting with the License Manager.
    My guess is that it was the removal of the integration pieces that allowed the application to run.  We'll perform our next install with just that change and see if it is the culprit.
    Jeff

  • CRVS2010 Beta - Crystal Reports for VS 2010 in November???

    Hey guys,
    are you serious??? You told us that the finished version will be released in July!!! We are working with VS 2010 and just because of you guys we are not able to deploy our applications via Click Once. How could it be, that you are that slow? I really have to say, that it was much better, when Crystal Reports was shipped with Visual Studio. Who had the silly idea to change that method?
    I think we are not the only company who is waiting for you to at last release the new version and now it''s even later? This is no good avertisment for you and we will change to another reporting as soon as possible...
    Thank you for nothing!
    Edited by: ksnbg_01 on Jul 6, 2010 2:21 PM
    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 Jul 6, 2010 9:32 AM

    Good afternoon.
    I can understand the frustration and we definitely realize that our delay is causing some pain for quite a few of our customers and partners.  To be blunt, we are just not happy with the size of our runtime size, which is why we have introduced this delay until November.  The current runtime size of the release is very high compared to today's runtime, the expectation of the market, and our own standards.  As such, we are working to reduce this.  In the meantime, we will be deploying a Beta 2 release in August, which will be a full featured release, but will include the larger runtime size.  I understand that this is not production grade software as we are labeling it as beta; however, it can be used for developing, testing, and qa'ing your applications.  As far as production deployment goes, it will, unfortunately, need to wait for the November release.
    I am more than happy to setup a time where we can chat over the phone about the challenges that this is creating for you and your organization.  Please feel free to give me a call (678 575 8916).
    Coy
    Product Owner - Enterprise Reporting

Maybe you are looking for

  • Kodo.jdbc.AutoIncrementConstraints doesn't seem to do anything

    I have an app_user table and related entity with an auto-increment primary key (on MySQL), and a user_role table and related entity with a FK pointing to the user PK. Both entities are using application identity. The problem is that the user_role rec

  • SQL Tunning

    I am having one batch job in which query fatching data from various tables and inserting in one table. It's taking 3-4 hours. On generating explain plan i come to know that query taking more time due to one outer join between one view(say V1) and lar

  • System Preferences won't load, .prefpane packages open like folders...

    Summary: When I click on system preferences in the apple menu nothing happens and no console log entries are generated. When I try and manually launch a .prefpane package from finder it just opens like a folder. If I try and manually launch a .prefpa

  • Photosmart D5160 connected to Router (Printer Server Feature), properties ignored

    Hi everyone, I'm here to describe my problem. I have the printer Phothosmart D5160 connected via usb cable to usb port of my router (Proprietary Router of Telecom Italy) for using it in among my home network PCs and laptops. The problem is that, prin

  • Email provider for sending many emails per day

    Morning all, I am looking for an email provider who can offer unlimited relays, I have at the moment a ever growing email list of over 1100. I would like to be able to email them all every single day. However using mac mail I have been told I can onl