Quantcast
Channel: SCN : Unanswered Discussions - SAP Crystal Reports, version for Visual Studio
Viewing all 2556 articles
Browse latest View live

Problem with VS2010 and CR13.0.2000.0 only header appears

$
0
0

Hello,

 

I have a problem with CR in VS2010.

 

I have a ASPX Web page where I have a CR viewer to display some dataset data. I have created a empty CR report to make a few tests but I I can't see it.

I can only see the CR header... and if I select a any header textbox I get an error. I also can't print or do other CR header options, don't have any error but I also don't do anything. As you can see in the images below:

header.JPG

 

error.JPG

 

 

I already add the crystalreportviewers13 folder in the solution and in the C:\Inetpub\wwwroot\aspnet_client\system_web\4_0_30319 folder.

I also put in the web config:

 

<sectionGroup name="businessObjects">

      <sectionGroup name="crystalReports">

        <section name="rptBuildProvider" type="CrystalDecisions.Shared.RptBuildProviderHandler, CrystalDecisions.Shared, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304, Custom=null"/>

        <section name="crystalReportViewer" type="System.Configuration.NameValueSectionHandler"></section>

      </sectionGroup>

    </sectionGroup>

 

and:

 

 

<businessObjects>

    <crystalReports>

      <rptBuildProvider>

        <add embedRptInResource="true"/>

      </rptBuildProvider>

      <crystalReportViewer>

        <add key="ResourceUri" value="/crystalreportviewers13"/>

      </crystalReportViewer>

    </crystalReports>

  </businessObjects>

 

My code is:

 

in the aspx file:

 

<%@ Register Assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"

    Namespace="CrystalDecisions.Web" TagPrefix="CR" %>

<%@ Import Namespace="CrystalDecisions.CrystalReports.Engine" %>

<%@ Import Namespace="CrystalDecisions.Shared" %>

<%@ Import Namespace="System.Data" %>

 

 

I have to insert this js file.. if not I had the "Uncaught ReferenceError: bobj is not defined" error

 

<script src="../crystalreportviewers13/js/crviewer/crv.js" type="text/javascript"></script>

 

 

 

Dim reportDoc As ReportDocument = New ReportDocument

reportDoc.Load(Server.MapPath("rrr.rpt"))  'rrr.rpt document is a empty report

reportDoc.PrintOptions.PaperOrientation = CrystalDecisions.Shared.PaperOrientation.Landscape

reportDoc.PrintOptions.PaperSize = CrystalDecisions.Shared.PaperSize.PaperA4

CrystalReportViewer1.RefreshReport()

CrystalReportViewer1.ReportSource = reportDoc

 

<CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server" AutoDataBind="true" />

 

Can someone help me? I already tried everything..


Memory Leak using SAP Crystal Reports Runtime for Visual Studio

$
0
0

Hello,

 

We are using SAP Crystal Reports for Visual Studio Runtime (Service Pack 15) as our printing engine in a .NET 4.6 Windows Service and we have found out a memory leak that we cannot avoid and it produces a serious memory increase in the long run.

 

The fact is that it seems that there are several unmanaged objects from the runtime (C++) that are not disposed / free and produces the memory leak because we have not found any memory problem in .NET objects (we have observed it using a Memory Profiler to analyse the process memory).

 

I've reviewed the code and apply a Fix we found for the previous runtime (CR 11 Runtime versión) but the memory leak persists .

 

The code is quite simple and it assures the dipose of the CR objects, I attached the code used to execute the report:

 

public GReportResult PrintReport(string xmldata, int copies, string layoutpath, string outputpath, string outputformat, string filename, string document, string pathSchema)        {            int result = 0;            string error = string.Empty;            try            {                using (SafeReportDocument report = new SafeReportDocument())                {                    using (DataSet reportData = new DataSet())                    {                        reportData.Locale = CultureInfo.InvariantCulture;                        try                        {                            reportData.EnforceConstraints = false;                            using (var xmlSchemaReader = new System.IO.StreamReader(Environment.ExpandEnvironmentVariables(pathSchema)))                            {                                reportData.ReadXmlSchema(xmlSchemaReader);                                using (var xmlDataReader = new System.IO.StringReader(xmldata))                                {                                    reportData.ReadXml(xmlDataReader);                                    try                                    {                                        report.Load(Environment.ExpandEnvironmentVariables(layoutpath));                                        try                                        {                                            report.SetDataSource(reportData);                                            try                                            {                                                switch (outputformat)                                                {                                                    case "Raw":                                                        report.PrintOptions.PrinterName = outputpath;                                                        report.PrintToPrinter(copies, false, 0, 0);                                                        break;                                                    case "Pdf":                                                        report.ExportToDisk(ExportFormatType.PortableDocFormat, filename);                                                        break;                                                    case "Excel":                                                        report.ExportToDisk(ExportFormatType.Excel, filename);                                                        break;                                                    case "Rtf":                                                        report.ExportToDisk(ExportFormatType.EditableRTF, filename);                                                        break;                                                    case "Html":                                                        report.ExportToDisk(ExportFormatType.HTML40, filename);                                                        break;                                                }                                            }                                            catch (Exception prn)                                            {                                                //PRINTERROR                                                result = 1;                                                error = prn.Message;                                            }                                        }                                        catch (Exception data)                                        {                                            //PMDATASOURCEERROR                                            result = 2;                                            error = data.Message;                                        }                                    }                                    catch (Exception load)                                    {                                        //PMLAYOUTERROR                                        result = 3;                                        error = load.Message;                                    }                                    }                                }                            }                        }                        catch (Exception px)                        {                            //PMXMLDATAERROR                            result = 4;                            error = px.Message;                        }                    }                }                GC.Collect();                GC.WaitForPendingFinalizers();                GC.Collect();            }            catch (Exception ex)            {                //PMERRINSTANCECMDOCUMENT                result = 5;                error = ex.Message;            }            GReportResult reportResult = new GReportResult(result, error);            return reportResult;        }

And the SafeReportDocument.class (used to fix the memory leak in CR RT 11):

 

public class SafeReportDocument : ReportDocument, IDisposable    {        private void CleanGlobalEvents()        {            Delegate domainUnloadDelegate = (Delegate)typeof(AppDomain).GetField("_domainUnload",                BindingFlags.Instance | BindingFlags.NonPublic).GetValue(AppDomain.CurrentDomain);            Delegate[] invocationList = domainUnloadDelegate.GetInvocationList();            Delegate ev;            for (short i = 0; i < invocationList.Length; i++)            {                ev = invocationList[i];                if (ev.Target != null && ev.Target.Equals(this))                {                    AppDomain.CurrentDomain.DomainUnload -= (EventHandler)ev;                }            }            Delegate processExitDelegate = (Delegate)typeof(AppDomain).GetField("_processExit",                BindingFlags.Instance | BindingFlags.NonPublic).GetValue(AppDomain.CurrentDomain);            invocationList = processExitDelegate.GetInvocationList();            for (short i = 0; i < invocationList.Length; i++)            {                ev = invocationList[i];                if (ev.Target != null && ev.Target.Equals(this))                {                    AppDomain.CurrentDomain.ProcessExit -= (EventHandler)ev;                }            }        }        /// <summary>        /// Cleans up resources        /// </summary>        /// <param name="disposing"></param>        protected override void Dispose(bool disposing)        {            if (disposing)            {                this.CleanGlobalEvents();            }            base.Dispose(disposing);        }    }

 

Is there any issue and fix regarding this case?

 

Thanks a lot for your time and your support.

 

Kind regards,

Yamel.

Crystal Server 2013 RAS SDK export PDF exception

$
0
0

Dear All

 

Currently I'm upgrading the Crystal Report to Crystal Server 2013 and creating a .NET page to download the report in PDF format. I followed the sample code in http://scn.sap.com/docs/DOC-28646 , and everything is fine, I can logon to the crystal report server, get the report, set the report datasource in runtime, and view the report in CrystalReportViewer. However, when I try to export the report to PDF by calling "PrintOutputController.Export(pdfFormat)", it shows "Attempted to read or write protected memory. This is often an indication that other memory is corrupt". It looks like something wrong with the PrintOutputcontroller as the exception goes out when I comment the function call of PrintOutputController. I tried to use the export function of CrystalReportviewer but nothing happened as well.


I tried to use ReportDocument, load the .rpt file, convert to ReportClientDocument and export to PDF and it works! So I guess it shouldn't be the problem of the report. Also I use the Administrator account to logon the server so it is unlikely the permission issue.

 

Can anyone please help? Many thanks!

 

# The server is windows server 2008 64bit.

Page crash in opening pdf page generated by crystal report

$
0
0

Hi,

 

I have CR10 and VS2008 and Win Server 2012. I was able to generate pdf from CR. But lately I started to get error and now I am unable to generate.

 

My error:

  1. System.Web.HttpUnhandledException: Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> CrystalDecisions.CrystalReports.Engine.InternalException:

Error in File C:\Windows\TEMP\APSPdf {21F12E8E-6EF3-49C5-9CF3-3F6BBDF481E9}.rpt:

Operation not yet implemented. ---> System.Runtime.InteropServices.COMException (0x800003E7):

Error in File C:\Windows\TEMP\APSPdf {21F12E8E-6EF3-49C5-9CF3-3F6BBDF481E9}.rpt:

Operation not yet implemented.

   at CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.Export(ExportOptions pExportOptions, RequestContext pRequestContext)

   at CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext)

   --- End of inner exception stack trace ---

   at QTime.Amdocs.APSPdf.GeneratePDFFile(Amdocs dsQtime, DateTime cmbStartDate, DateTime cmbEndDate) in \\172.16.0.166\d$\Amdocs\APS\ViewPdf.aspx.cs:line 173

    at System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e)

   at System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)

   at System.Web.UI.Control.OnLoad(EventArgs e)

   at System.Web.UI.Control.LoadRecursive()

   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)

   --- End of inner exception stack trace ---

   at System.Web.UI.Page.HandleError(Exception e)

   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)

   at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)

   at System.Web.UI.Page.ProcessRequest()

   at System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context)

   at System.Web.UI.Page.ProcessRequest(HttpContext context)

   at ASP.qtime_qtime_timesheetentry_by_cand_qtimeentryviewpdf_aspx.ProcessRequest(HttpContext context) in c:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\qsecurev2\68a0c4d2\1d652cc2\App_Web_imewgtzj.0.cs:line 0

   at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()

   at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)

 

 

 

 

Please help me.  Thanks in advance.

Getting Database Login Error in Crystal Reports 13 for VS2012 using VB

$
0
0


Can someone help? I have applications running flawlessly under VS2008, WIndows XP, Crystal Reports 10, Visual Basic. When I attempt to upgrade them to VS2012, Windows 7, Crystal Reports 13, Visual Basic. Everything works except converting the Crystal Report to PDF. I get a database login error. I am attaching the code in question.

 

'******************************************************

'Export to PDF                                        *

'******************************************************

Dim crtableLogoninfos AsNew TableLogOnInfos

Dim crtableLogoninfo AsNew TableLogOnInfo

Dim crConnectionInfo AsNew ConnectionInfo

Dim CrTables As Tables

Dim CrTable As Table

Report.Load("\\umcintranet3\payroll\WorkforceCentral\ActingPayReport1.rpt")

      With crConnectionInfo

           .ServerName = "xxxxxxxxxxx"

           .DatabaseName = "xxxxxxxxxx"

           .UserID = "xxxxxx"

           .Password = "xxxxx"

     EndWith

 

CrTables = Report.Database.Tables

ForEach CrTable In CrTables

          crtableLogoninfo = CrTable.LogOnInfo

          crtableLogoninfo.ConnectionInfo = crConnectionInfo

          CrTable.ApplyLogOnInfo(crtableLogoninfo)

Next

                        
CrystalReportViewer1.ReportSource.Refresh()

CrystalReportViewer1.ReportSource = Report

 

'****************

Try

     Dim CrExportOptions As ExportOptions

      Dim CrDiskFileDestinationOptions AsNew  _

         DiskFileDestinationOptions()

      Dim CrFormatTypeOptions As New PdfRtfWordFormatOptions

                            
         CrDiskFileDestinationOptions.DiskFileName = pdfFile

          CrExportOptions = Report.ExportOptions

              With CrExportOptions

              .ExportDestinationType = ExportDestinationType.DiskFile

              .ExportFormatType = ExportFormatType.PortableDocFormat

              .DestinationOptions = CrDiskFileDestinationOptions

                              .FormatOptions = CrFormatTypeOptions

        EndWith

         Report.Export()  '<<<<<<<<<  THIS IS WHERE THE ERROR OCCURS!!!

 

Catch ex As Exception

                           MsgBox(ex.Message, MsgBoxStyle.Exclamation, "Error")

EndTry

 

Thanks, Les.

crystal reports 13 close IIS ApplicationPool

$
0
0

Everything was fine in ws2008, CRforVS_13_0_5, vs2008 but recently i updated the application to ws2012, CRforVS_13_0_15, vs2015, the application is ok but when i print reports "sometimes" the IIS ApplicationPool  is closed, i have to recycle when this happen.

 

In the event viewer the error is can't load report especif in this line

crystalReport.Load(Server.MapPath("reportes/acciones.rpt"));

Subreport Exceeding Page Width of Main Report

$
0
0

Hi

  I am running Crystal Reports 12. The reports are called from my .Net app (not embedded in the app) (version 4.5). The report contains one Main report and several subreports. It all works fine. One of the subreports is a CrossTab report. When the cross tab has more columns than can be fit in a page, the extra page is not printed from the main report. This is a problem. When I print the sub-report separately (from Crystal Reports not from my app), in prevew mode, I can see and print both the pages. But when I print the main report, I am unable to print the extra page.

 

Is it possible to

 

1. get Crystal print all of my subreport, even if it exceeds the width of the main report

 

or

 

2. (even better) get the row that exceeds the page width to wrap automatically?

 

Any and all help would be deeply appreciated.

 

Thanks in advance!

 

Regards

Kanthi

How Can Set My Bengali Language My Crystal Report

$
0
0

I am Bangladeshi . My All Of Data Is Bengali . Now I Have To Create Some Formula . So Now I Need Change Language .Please Help Me.

My Visual Studio Is 2012


Log on error in Crystal report in asp.net and oracle 11 g

$
0
0

HI

 

I have a web application developed using asp.net 4.0 and Oracle 11 g . crystal report is being used as a report viewer.

it was working fine on window 2008 r2 64 bit . now we had to migrate it on some new server with the same configuration.

everything is working fine except crystal report which shows the error Log on failure  XXX.rpt file .  I have installed the crystal report runtime 32 bits for dot net 4.0 as well. i have tried 64 bit as well.

 

Please let me know if you have any clue regarding that .this application is working fine on the same configuration on another server.

Visual Studio 2015 prof Windows 10 prof and CR 13.0.15

$
0
0

Hi,

i have a Problem.

I have a newly installed Windows 10 prof german computer and installed a Visual Studio 2015 prof german.

After that in found and installed CRforVS_13_0_15.exe.

So far so gut.

But when i converted a Projekt to Vs 2015 i couldn't open any rpt file, the  only view i had was the hexeditor.

I searched the internet, and checked that Framework 3.5 was installed. I deinstalled everything and reinstalled it.

But nothing changes. i can add and use a Reportviewer in any Projekt.

cr151.PNG

But a canoot open a Report file or add a new one

cr152.PNG

thank you

Crystal Viewer control in ASP.NET application displays on local host but not when published to shared host site.

$
0
0

I have created an ASP.NET application that provides pricing information for company sales representatives.   The application utilizes a Crystal Report that has been displaying correctly for over a year until recently.    I host this application on a third part hosting company.   After the company updated their servers to IIS 2012, the website has failed to run the report.   I was not able to get technical support from the hosting company and am working with a large international hosting company that specializes in Crystal hosting.  

 

I have published my application to the new host and am not able to run the report as previously from the application.  The report will show in the embedded crystal viewer of my application when I run the report in the Visual Studio 2010 programming environment (localhost).   The crystal viewer control does not show at runtime in the ASP.NET application when the webpage is displayed from the host.   No errors show on the screen or in the web site log indicating the reason for the failure.

 

Some things that I have tried.

 

I have installed the most recent version of Crystal Reports for Visual Studio (13.0.15).

I have copied the aspnet_client folder to the httpdocs folder of the web host to confirm that supporting files are present for Crystal.

I have the program compiled as an x86 program.

I have confirmed that application pool is set to 4.+ on the web host.   I do not have control of “classic mode” on the new web provider that I can find.

 

I hope that you can point me to a resolution for this problem.  

After Upgrade to Visual Studio 2015

$
0
0

I have a issue that is killing me !!!!

 

Environment

Windows 2012 R2

IIS 8.5

CR 2011 (13.0.2000)

 

Our production web project currently compiled/published in Visual Studio 2012. All reports load and work correctly in viewer with no issues.

 

We installed VS 2015, moved/imported the project, built/compiled and installed on same server in a different site for testing. With no changes to any code, now all of the reports give the "Invalid report File Path" error.. The viewer looks like it is loading correctly. The error seems to be in the viewer. I have verified the code to make sure nothing changed. I have verified the path and permissions to all the folders (report, temp, etc.). I have also run process monitor and do not see any errors. I actually can see it report being opened and the temp files being created while it attempts to run. I am lost on what to look for next.. Any help wold be greatly appreciated.

 

Casey

System.Runtime.InteropServices.COMException was caught HResult=-2147467259 The system cannot find the path specified.

$
0
0

We recently moved from an Oracle db to MS SQL Server. I have about 50 crystal reports that were previously using System DSN driver "Oracle in OraClient11g" and are now pointed to an "ODBC Driver 11 for SQL Server".

 

Approx. half the reports work just fine. The other half throw the following exception when I convert them to PDFs within Visual Studio (C#; ASP.NET) code:

 

System.Runtime.InteropServices.COMException was caught HResult=-2147467259   The system cannot find the path specified.

 

All reports run fine when print previewing within Crystal Reports itself. In Visual Studio debug, the report document object looks perfect. I cannot figure out why some run fine and others don't. Any help on this would be greatly appreciated.

 

Crystal Reports Version 14.0.2.364

Visual Studio 2013 Version 4.5.51209

Crystal developer Version should be used with Crystal Server 2013

$
0
0

We are going to Crystal report Server 2013 Windows what version of the Crystal Report Developer should we use??

detect click on 'Apply' button in parameter panel

$
0
0

CRVS SP15 winform:

 

Is there a way to detect:

a) the user clicked on the 'Apply' button in the interactive parameter panel of the CrystalReportsViewer control? 
- or -

b) that a viewer is undergoing a content refresh (due to the above click or any other reason)?


System.Runtime.InteropServices.COMException: No error.

$
0
0

All,

 

I'm working on a legacy app that generates over 10,000 billing reports one day per month. It uses NServiceBus and runs 8 threads.

 

Here's my setup:

Crystal Reports v13.0.15.1840

 

 

OS Name Microsoft Windows 8.1 Enterprise

Version 6.3.9600 Build 9600

System Type x64-based PC

Processor Intel(R) Core(TM) i7-2600 CPU @ 3.40GHz, 3401 Mhz, 4 Core(s), 8 Logical Processor(s)

 

It starts with a couple of these:

 

Load report failed. ---> CrystalDecisions.Shared.CrystalReportsException: Load report failed. ---> System.Runtime.InteropServices.COMException:

No error.

   at CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.Open(Object& DocumentPath, Int32 Options)

   at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.Open(Object& DocumentPath, Int32 Options)

   at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()

   --- End of inner exception stack trace ---

   at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()

   at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob)

   at CrystalDecisions.CrystalReports.Engine.ReportClass.Load(String reportName, OpenReportMethod openMethod, Int16 parentJob)

   at CrystalDecisions.CrystalReports.Engine.ReportDocument.EnsureLoadReport()

   at CrystalDecisions.CrystalReports.Engine.ReportDocument.SetDataSourceInternal(Object val, Type type)

   at CrystalDecisions.CrystalReports.Engine.ReportDocument.SetDataSource(DataSet dataSet)

 

 

then some of these:

 

 

Error in File temp_e644c722-eeee-4975-be74-f61b0a3b73e9 11796_7832_{32C4347F-F4EB-47F2-9315-FB41C3144995}.rpt:

Error detected by export DLL:  ---> CrystalDecisions.CrystalReports.Engine.ExportException:

Error in File temp_e644c722-eeee-4975-be74-f61b0a3b73e9 11796_7832_{32C4347F-F4EB-47F2-9315-FB41C3144995}.rpt:

Error detected by export DLL:  ---> System.Runtime.InteropServices.COMException:

Error in File temp_e644c722-eeee-4975-be74-f61b0a3b73e9 11796_7832_{32C4347F-F4EB-47F2-9315-FB41C3144995}.rpt:

Error detected by export DLL:

   at CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.Export(ExportOptions pExportOptions, RequestContext pRequestContext)

   at CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext)

 

 

and lastly, lots of these:

 

Failed to export the report.

 

 

Not enough memory for operation. ---> System.Runtime.InteropServices.COMException: Memory full.

Failed to export the report.

 

 

Not enough memory for operation.

   at CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.Export(ExportOptions pExportOptions, RequestContext pRequestContext)

   at CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext)

   at CrystalDecisions.CrystalReports.Engine.FormatEngine.ExportToStream(ExportRequestContext reqContext)

   at CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToStream(ExportOptions options)

   at CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToStream(ExportFormatType formatType)

 

 

I've been trying to fix this issue for the last 2 weeks with no luck, Any help is greatly appreciated.

 

-Daniel

Crystal Reports On Windows 2012 Server Log4net Error

$
0
0

I can run Crystal Reports fine on my local machine. But when I copy the code up to the server and hit the page, I get the following error.

 

Couldnot load file or assembly 'log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=692fbea5521e1304'or one of its dependencies.The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040) 

 

I installed the CRforVS_redist_install_64bit_13_0_15 since the server is 64bit. The Dev PC is also 64 bit and running the same library.

 

I copied the log4net version 1.2.10.0 to the bin folder and still have the error.

 

Any help or direction would be greatly appreciated.

Licensing question

$
0
0

Hello,

 

We are a team of 10 Developers working on a Windows Forms based Microsoft.NET solution and intend to use Crystal Reports for our reports. This Report project will be a part of the .NET solution and only a couple of developers will be working on the Reports project concurrently.

 

The final product is a windows application that will be installed on tens of client desktops and they will need ability to run reports using this application.

 

My questions are as follows:

(1) Do we have unlimited client desktop licensing for the final product - windows application?

(2) Do all 10 developers need a Crystal Report license even when only a couple of them would be working on that project at a given time?

(3) Can developer license be transferred from one to another based on who is working on it?

 

Thanks,

Report displayed in design mode but not in localhost

$
0
0

Hi,

 

I'm using VS2010 with CR 13.0.2000.0 in a windows XP machine.

 

In design mode in VS I can see the report (it's a normal one, with some text) as you can see in the image:

 

design.JPG

 

But, when I run the application and go to the page I inserted the report, I only see the header:

 

localhost.JPG

 

 

I have this error in chrome developer mode:

 

error.JPG

 

Can anyone help me with this?

 

Best regards.

IE Hangs when closing Report Viewer

$
0
0

I have .Net web application running on IIS 7.5 with Crystal Report runtime 13.0.14.

 

Whenever I use a browser to view a report and close the report viewer, the IE hangs, this only happens in Citrix environment XenApp 6.5 which is running on Windows Server 2008 R2.  No error if I use a browser in Windows 7 or remote desktop to the windows server.

 

Please help.

Viewing all 2556 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>