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

CRviewer do not show anything when click button to show report with VS2013

$
0
0

First of all I must say, My English language skill is not good but I'll try to communicate as best as possible.

I am using Visual Studio 2013Ultimate with Update4  on .NetFramework 4.5.1  and Crystal Reports SP13.0.13.1597

When installed complete. ( Previously i have tried it with my project but CR & CRviewer not working)

 

I have tried using CRviewer in a new asp.net page  The following code

 

 

***-----WebFrom1.aspx-----***

<body>

    <form id="form1" runat="server">

    <div>

    <asp:RadioButton ID="rdoByAll" runat="server" Text="all" GroupName="rdoChoose" AutoPostBack="True" />

       

        FromDate :

        <asp:TextBox ID="txtDateFrom1" runat="server" AutoPostBack="True"></asp:TextBox> 

        ToDate :

        <asp:TextBox ID="txtDateTo1" runat="server" AutoPostBack="True"></asp:TextBox>

 

 

        <asp:Button ID="btnCallReport1" runat="server" Text="CallReport" />

        <br />

        <br />

        <asp:RadioButton ID="rdoByName" runat="server" Text="ByName" GroupName="rdoChoose" AutoPostBack="True" />

        FromDate :       

        <asp:TextBox ID="txtDateFrom2" runat="server" Height="16px" Width="150px" AutoPostBack="True"></asp:TextBox>

        ToDate :

        <asp:TextBox ID="txtDateTo2" runat="server" Height="16px" Width="150px" AutoPostBack="True"></asp:TextBox>

  <asp:Button ID="btnCallReport2" runat="server" Text="CallReport" />

        <asp:DropDownList ID="ddlNamelist" runat="server" AutoPostBack="True">

        </asp:DropDownList>

        <br />

        <br />

       

        <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server" AutoDataBind="True" ToolPanelView="None" />

       

        <br />

    </div>

    </form>

</body>

 

 

***-----WebFrom1.aspx.vb-----***

Imports CrystalDecisions.CrystalReports.Engine

Imports CrystalDecisions.Shared

Imports CrystalDecisions.Web

 

Public Class WebForm1

    Inherits System.Web.UI.Page

 

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

 

    End Sub

 

Protected Sub rdoByAll_CheckedChanged(sender As Object, e As EventArgs) Handles rdoByAll.CheckedChanged

        If rdoByAll.Checked = True Then

            txtDateFrom1.Enabled = True

            txtDateTo1.Enabled = True

            btnCallReport1.Enabled = True

            txtDateFrom2.Enabled = False

            txtDateTo2.Enabled = False

            btnCallReport2.Enabled = False

            ddlNamelist.Enabled = False

        Else

            txtDateFrom1.Enabled = False

            txtDateTo1.Enabled = False

            btnCallReport1.Enabled = False

            txtDateFrom2.Enabled = True

            txtDateTo2.Enabled = True

            btnCallReport2.Enabled = True

            ddlNamelist.Enabled = True

        End If

    End Sub

    Protected Sub rdoByName_CheckedChanged(sender As Object, e As EventArgs) Handles rdoByName.CheckedChanged

        rdoByAll_CheckedChanged(sender, e)

    End Sub

 

    Protected Sub btnCallReport1_Click(sender As Object, e As EventArgs) Handles btnCallReport1.Click

        Dim rpt As New ReportDocument()

        rpt.Load(Server.MapPath("CrystalReport1.rpt"))

        Me.CrystalReportViewer1.ReportSource = rpt

        Me.CrystalReportViewer1.RefreshReport()

    End Sub

End Class

-------------------------------------------------------------------------------------------

When i press F5 to run project make Code of radiobutton not work(Disable,Enable OtherControl such as textbox)

And when i try press CallReportButton CRviewer do not show anything.

When I brought CRviewer leaving the page ,Code of Radiobutton were working fine.

But can't to show "CrystalReport1.rpt" on CRviewer when i click CallReportButton. i'm not understand.

 

Then i have tried to learn from follow this link : CR not working in visual studio 2013

and Using Crystal Report in ASP.Net website, Report not showing in CrystalReportViewer

 

i have to create a new CR ASP NET project and copy the whole C:\inetpub\wwwroot\aspnet_client folder

into my app folder and then add this to your web.config file, line in bold:  <add key="vs:EnableBrowserLink" value="false"/>

project is working but not fine  when I try to click button to call report  I get this pop-up .   " popup.JPG"   what is it?

And project warning!  could not find schema information every element . "Could not find every Element.JPG"

 

After that, copy the whole C:\inetpub\wwwroot\aspnet_client folder into my app folder Only!  not add in my web.config

(In previous project need to use CR)  make to project were working  but i get same pop-up when i click to show report.

**** buleline in popup.JPG picture  is "The report you requested requires further information"


Crystal Report Integration Problem with VS 2012 Ultimate

$
0
0

I installed Crystal Report (Support Pack 13 v.13.0.13.1597) for VS 2012 Ultimate. When I create a crystal report, the Crystal Reports Gallery didn't pop up. Instead it just jump to *.rpt file and shows one hell of a hex codes


Did anyone faced the same issue, like mine?

Pliz, help me out.

 

error cR.PNG

step 3 rpt.PNG

How can I register my Crystal Reports 9 included in VS .NET 2003 Ent?

$
0
0

I am rebuilding an old development system and cannot seem to get Crystal Reports registered. The automatic registration process keeps failing when connecting to a defunct URL.

 

I have already contacted customer support online as well as their help line. Both support avenues sent me back to this forum so hopefully, someone can give me a hand with this problem.

 

crystal_decisions.png

 

Thx in advance.

errorKind : "String is not numerical" with non-english culture

$
0
0

Hi!,

 

I have this error when generating a Crystal PDF report with a XML file using the Crystal Report API.

 

Details :


XML :

The XML has only one type of data which is string to represent a duration.

Values are in the format HH.MM, so the values in the XML look like :

 

<xs:element name="srv_duration" type="xs:string" minOccurs="0"/>

...

<srv_duration>39.13</srv_duration>

 

(39.13 = 39 hours and 13 minutes)

 

.RPT file :

 

In the RPT file, I use the method "ToNumber" to convert the string to a number.

 

Issue :

When my application is in french, the culture of my thread is french and then Crystal API is executed (my guess) in french.

The conversion of the string fails (errorKind : String is not numerical) somewhere between the ToNumber conversion and the display of the value in the report. With french culture, the decimal separator is the comma "," so I guess there's a problem with the conversion of 39.13.


When my application is in english, the culture of my thread is english and then Crystal API is executed in english.

The conversion of the string is straight-forward since the decimal representation of period "." is the same in english culture.


Questions :

-Does anyone know when the error is thrown ?... during ToNumber call? during the display in the report field ?

-Do I have to adapt my values in the XML to consider the culture ?

-Why does the conversion of a string to a number isn't invariant of the culture ? 

 

Thanks for your help

Setting report paper dimensions to the printer

$
0
0

Hi guys,

I have a big problem and I need our help....

 

I'm converting an old VB6 program to .NET but I can't replicate a VB6 behaviour into .NET application.

The VB6 application use Crystal Report 11.5 while .NET application (VS2010) use Crystal Report for .NET (Support Pack v.13.0.13.1597)

 

This is the situation:

the report that I use has the flag "no print" checked and has a specific dimension (10cm X 8 cm):

Immagine1.png

The "Printer Setup" options:

Immagine.png

 

This special report (is a little label) is printed with a particular printer that has this setting:

Immagine.png

The report must be printed with the dimension 10x8 (the label has this dimension).

 

When open in preview this report with VB6 application (through CrystalReportViewer), the printer selected has the "report dimension":

Immagine.png

 

When open in preview the same report with .NET application (through CrystalReportViewer.NET) the printer selected has his original dimension:

Immagine.png

The report is the same and the printer is the same too.

 

Both programs set the name of the printer, paper size (= A4), duplex (default), paper orientation (landascape) and nothing else...

 

The .NET code is this:

----------------------------------------------------------------------------------------------------------------------------------------------------

Private _myCRDoc As CrystalDecisions.CrystalReports.Engine.ReportDocument

_myCRDoc = New CrystalDecisions.CrystalReports.Engine.ReportDocument

_myCRDoc.Load(rptPath, CrystalDecisions.Shared.OpenReportMethod.OpenReportByTempCopy)

_myCRDoc.PrintOptions.DissociatePageSizeAndPrinterPaperSize = True

_myCRDoc.PrintOptions.NoPrinter = False

_myCRDoc.PrintOptions.PrinterName = printerName

_myCRDoc.PrintOptions.PaperSize = PaperSize.PaperA4

_myCRDoc.PrintOptions.PrinterDuplex = PrinterDuplex.Default

_myCRDoc.PrintOptions.PaperOrientation = CrystalDecisions.Shared.PaperOrientation.Landscape

 

Friend WithEvents Visualizzatore As CrystalDecisions.Windows.Forms.CrystalReportViewer

Visualizzatore.ReportSource = _myCRDoc

Visualizzatore.Show()

----------------------------------------------------------------------------------------------------------------------------------------------------

(the VB6 code is similar)

 

I don't understand how VB6 application can modify the printer dimension.

Can CR.NET modify that setting?

 

Thanks in advance

Francesco

CR viewer 13 printing problem (IE7,8 - WinXP)

$
0
0

Dear all,

I'm using Crystal Report Viewer version 13 (ASP.NET 3.5).

There is no problem when printing to printer (using ActiveX mode) or export to *.xps in Windows 7.

But in WinXP (IE7, 8), a report section (page section) is hidden (not printed to printer or xps file).

Can somebody help me?

Tks.

Changing owner of printjob

$
0
0

Hi Community,

 

I have written a application which is running as a Windows Service in Background. this application is printing different reports. different users are creating a order for my application and the application opens a Report and prints the Report with the inproc ras (rasPrintOutputController) to the Printer. the print Jobs are created with the user of my Windows Service.

 

now we Need to support a print System where every user has an account on the print System. therefore it is necessary that the print Job is printed with the username of the user who has intiated the order for my application.

 

does anybody have experience with this things? it ist posible to create a spoolfile with another user ID as the user who is creating the printfile?

 

 

I think about putting the user ID at the start of the jobtitle, so that may be the Printer can get the userid out of the text, but changing the user would be better.

 

regards

joerg

 

 

 

Font Scaling Option to Better Match Designer

$
0
0

I just posted the following to Idea Place: CRVS Font Scaling Option to better match Designer Rendering : View Idea

If you agree, please vote.


As shown in this image: http://screencast.com/t/TmnRjXoWs (also attached) Crystal Designer and CRVS (SP13) scale fonts very differently.

 

Based on forum info, C++ is used for rendering in Crystal Designer while .NET is used for rendering in CRVS runtime viewer.


Please provide an option to use a different font scaling method for the viewer in order to more closely match font scaling in Crystal Designer. This is NOT a breaking change -- just a way to opt into a different scaling method.


Reports render differently in Visual Studio Crystal Viewer Control

$
0
0

My company has an old version of an Internet Explorer plug-in provided by Crystal Decisions, Inc. for viewing Crystal Reports. Our reports view fine when used in this control in Internet Explorer. However, it only supports reports made in older versions of Crystal Reports.

 

Since we have purchased a newer version of Crystal Reports, we would like a viewer to use in our company that supports the newer version. As a Visual Studio developer, I have created a simple app in VS 2013 using the CR control supplied by SAP. The problem is, the VS control does not render the reports properly.  For example, dates will render properly "4/15/2015" in the old plug-in mentioned above, but will render "4/15/20" in the VS 2013 control provided by SAP.  Text doesn't seem to fit in places where it fit using the old plug-in.

 

Is there a setting to fix this? Or is the Visual Studio control not as polished? Or something else?

 

Obviously we don't want to switch to a new and updated way to view reports only to have the reports rendered with missing text.

 

Thanks

 

Joe

CR do not show when input Date range parameter (Convert string to Date)

$
0
0

Hi.

In my database, table have a field named "Date"

Data Type is Date and Format is (yyyy-mm-dd).

Data type.JPG

I change Format from (yyyy-mm-dd) to (dd/mm/yyyy)

And set field's name is Date_Convert in view of database.

date.JPGtodatecon.JPG

 

I have created CrystalReport by selecting show from my view

and choose field to display normally.

When look at Section detail,Data type is changed to String all

Date as String.JPG

i use formula fields for Convert from String to Date.

Name:Date_ConStrToDate use this code "Cdate({vwReport.Date_Convert})"

 

and use Parameter Fields to set Date Range.

(Name:DateRange , Type:Date, Allow Range Values:True)

 

then i set @Date_ConStrToDate is equal to {?DateRange}

 

When I input date range as needed

The report does not show what I want. how to fix this issue?

Someone help me. Thank you

Result.JPG

Problem passing parameters from Visual Studio 2012 code to crystal reports

$
0
0

Here is the code:

 

strReportPath = Application.StartupPath & strConn_ReportPath & frmMain.ReportForm

 

cr.close()

CrystalReportViewer1.EnableDrillDown = False

cr.Load(strReportPath)

cr.SetDatabaseLogon("username", "password")

cr.SetParameterValue("tcLjob", txtJobNum.Text)

 

CrystalReportViewer1.ReportSource = cr

CrystalReportViewer1.Refresh()

 

When I run the report, it still prompts for parameter.

 

Any help would be appreciated

 

Thanks,

 

Bill H

When 40 subreports are added programmatically to a report the last subreport to be added is shown first while all other reports are in the correct order

$
0
0

I am loading multiple sub-reports (up to 40) into a master report document using the Crystal SDK. This is accomplished by obtaining a reference to the detail area, adding a section to it, and then importing the subreport into the detail area. The master report does not contain a whereclause and contains no data other than the other sections so it is display only once.

 

When I add the section to the master report I give an index of -1 so that it would always appear on the bottom in the report. This works until I print a report containing exactly 40 reports at which time the last section is shown at the top of the report. All other sections (and hence subreports) appear in the correct order. If I print less than 40 reports all sections are in the correct order. If I print more, the export process crashes as documented in Invalid Section Height when I load the nth subreport

 

I am using Crystal Reports SDK 13.0.8. Visual Studio 2012. .NET 4.5.2.

 

The pertinent bit of code is shown below. What might I be doing incorrectly? Is this a Crystal SDK bug?

 

Thanks,

Ryan

 

 

private ReportDocument AddSubReportToParent(string subReportName, string fileName)
{    try    {        CrystalDecisions.ReportAppServer.ReportDefModel.ISCRArea headerArea = _crystalDocument.ReportClientDocument.ReportDefController.ReportDefinition.ReportHeaderArea;        CrystalDecisions.ReportAppServer.ReportDefModel.ISCRArea detailArea = _crystalDocument.ReportClientDocument.ReportDefController.ReportDefinition.DetailArea;        CrystalDecisions.ReportAppServer.ReportDefModel.ISCRArea footerArea = _crystalDocument.ReportClientDocument.ReportDefController.ReportDefinition.ReportFooterArea;        CrystalDecisions.ReportAppServer.ReportDefModel.Section section = new CrystalDecisions.ReportAppServer.ReportDefModel.Section();        // strip dots from name (any character that is not a number or letter causes a name/ID runtime error from the Crystal Reports SDK)        string sectionName = "Section" + subReportName.Replace(".", "");        section.Name = sectionName;        section.Kind = CrystalDecisions.ReportAppServer.ReportDefModel.CrAreaSectionKindEnum.crAreaSectionKindDetail;        section.Width = headerArea.Sections[0].Width;       _crystalDocument.ReportClientDocument.ReportDefController.ReportSectionController.Add(section, detailArea, -1);        _crystalDocument.ReportClientDocument.SubreportController.ImportSubreport(subReportName, _configSettings.InputPath + "\\" + fileName, section);        ReportDocument subreport = _crystalDocument.OpenSubreport(subReportName);        return subreport;    }    catch (Exception ex)    {        Logger.ErrorException(ex);        throw;    }
}

Repeat Group Header On Each Page with Underlay Following Sections

$
0
0

How to overcome the following problem?

 

1. I am using Crystal report 13.0.5.891

2. I have designed the report with Group Header as [Underlay following section]

3. I have checked the group to repeat on each page

4. Number of lines in the group header may vary

5. Number of lines in details may also vary

 

My objective is to print the separator line placed in group footer, after the

header lines or after the detail lines which one is taking the maximum lines.

This is not happening, and I am getting the following output, which is not meeting my requirement

 

 

Where the "LINE IN GROUP FOOTER" should appear after "Group 1 Header Line 6" in the second page

as the report ends there, but in the output, the line is coming just after the end of detail record.

like following

 

As a result of this, the next record of the group is overlapping with the first record and creating a mesh

 

------------------------------------------------------------------------------------------------------------------------------------ PAGE 1 OF 2

Column Heading 1                       Column Heading 2                      Column Heading 3

------------------------------------------------------------------------------------------------------------------------------------

Group 1 Header Line 1                 Detail Record 1 Line 1

Group 1 Header Line 2                 Detail Record 1 Line 2

Group 1 Header Line 3                 ----------------------------------------------------------------------------------

Group 1 Header Line 4                 Detail Record 2 Line 1

Group 1 Header Line 5                 Detail Record 2 Line 2

Group 1 Header Line 6                 Detail Record 2 Line 3

                                                  Detail Record 2 Line 4

                                                  Detail Record 2 Line 5

======================LINE IN GROUP FOOTER========================

 

PAGE BREAK

 

------------------------------------------------------------------------------------------------------------------------------------ PAGE 2 OF 2

Column Heading 1                       Column Heading 2                      Column Heading 3

------------------------------------------------------------------------------------------------------------------------------------

Group 1 Header Line 1                    Detail Record 3 Line 1

Group 1 Header Line 2                    Detail Record 3 Line 2

Group 1 Header Line 3                    Detail Record 3 Line 3

Group 1 Header Line 4                    Detail Record 3 Line 4

======================LINE IN GROUP FOOTER========================

Group 1 Header Line 5

Group 1 Header Line 6

 

 

Thanks in advance.

Data Access from Table

$
0
0

Hello

 

We would like to access data from multiple tables (A , B) using select statement, join and where clause.

Please help and provide the example that how to write a code in SAP .Net to fetch these data without using any function module.

 

Please help

 

Regards

Basis

When click next page of CR this prompt appear (Use DataSet)

$
0
0

Hi.

I have tried using CR with DataSet  and Connectivity and display fine from my code.

 

But when I pressed to the next page. this prompt appear(In every project to use CR with DataSet)

Datasetpromt.JPG

Popuplogon.JPG

What are the causes? and How to fix this issue? 

CR SP 13.0.13.1597  ,  VS2013 With Update 4  and .NetFramework4.5.1

If you need more information ask me anytime.

Thank for response.   -/\-


Text justification issue in crystal report

$
0
0

Hi,

 

I have MVC application with crystal report in it. I am exporting crystal report to PDF, everything except text justification (as we do in MS-Word) is not working. Even in crystal report viewer itself it's not working.

 

 

I have been trying since few days to solve text justification problem in CR. Well I have goggled a lot for this and found different available option to get the thing done. But that didn't solved my problem, I have read many replies on the crystal report discussion regarding the same but no result. I have tried four different versions of crystal report (13.0.5,13.0.6,13.0.9,13.0.13) as I found on the web that justify could work in these versions, but I was shocked when I didn't get anything useful.

 

For me it's like justify doesn't work in crystal report by any means. Can any one here tell me who has solved the text justification problem in crystal report. I have attached sample screen shot of word document where in I have specified my requirement of text justification.

 

Any positive reply would be highly appreciated.

 

Screenshot (79).png

Both sub-reports on the same page and yet display footnotes only once?

$
0
0

Hi All,

We have two sub-reports "stackable" on the top of each other, and both these sub-reports are multi-page dynamic ones (i.e. amount of records in each of these sub-reports can span through multiple pages).


For each sub-report we have footnotes displayed at the bottom of each page. Due to dynamic nature of these sub-reports we had to place footnotes on sub-report, and not on main report, so it'll be displayed on each page. And for the same reason, we had to make sure second sub-report starts on the separate page (as we'd have two footnotes displayed on the shared page otherwise).

 

There might be a situation when only one record exists for first sub-report, which leaves a lot of space on the page.

 

Is it possible to display both sub-reports on the same page and yet display footnotes only once?

 

 

Environment:

===========

 

BOXI3.1 SP5.4

Crystal reports

Crystal Report Font Removing white space from string and other image issues.

$
0
0

I've never had this issue before and am stuck.

 

First: When I set the font type to "Aller" for strings rendered by formulas, i.e. Formula: [If 1 then "Return this text"] shows "Returnthistext" on the report in the web viewer, but not in the report preview viewer in VS. I tested with a few other fonts and the whitespace wasn't removed, which I find odd. Aller exists in C:\Windows/Fonts. I found a response on stack overflow that recommended uninstalling/reinstalling the runtime version, which I did, but the text still showed no whitespace.

 

Second: Images aren't showing up in the web viewer, either. All of the proper handlers have been added to the web config and crystal references have been added to the project. The images are inserted from the Pictures folder in my documents.

 

Here's the kicker: Although I'm having these issues with the web viewer, when I export to PDF, all images and text are displayed properly.

 

 

Thank you for your help,

 

Taylor

Type 'System.String' cannot be marshaled as an unmanaged structure; ... error is back

$
0
0

The error discussed in this post http://scn.sap.com/thread/1890650 seems to have crept back into SP12.  The following code:

Using dbConnection AsSqlConnection = GetNewSQLConnection()

                    .AddLoginInfo(dbConnection)

                    IfTypeOf .Report IsIHasParametersThen

                        DirectCast(.Report, IHasParameters).ApplyParameterValues()

                    EndIf

                   If .Report.Rows.Count > 0 Then

                        .PrintToPrinter(.PrinterPageSettings.PrinterSettings.Copies, False, _

                                        .PrinterPageSettings.PrinterSettings.FromPage, _

                                        .PrinterPageSettings.PrinterSettings.ToPage)

.

.

.

Gives the error at If .Report.Rows.Count > 0

Type 'System.String' cannot be marshaled as an unmanaged structure; no meaningful size or offset can be computed.

 

The report does contain a blob - I tried deleting it and dragging it from the table - again, but the same error appears before and after.  The type of the Field object is IFieldBlob.  Oddly enough, other reports that also contain this field, currently seem to be working, although we will have to revisit all of them now.

 

I am using VS2010 and SQL Server 2005.

 

Any help would be appreciated. 

After upgrading Crystal Reports to version13.0.13.1597 - Getting an integer divide by zero for some report

$
0
0

Hi,

 

I currently have installed in the same environment the following:

 

• VS 2010

• VS 2013

• Crystal Reports for VS version 13.0.13.1597 which was installed from the exe.

 

Some of the reports in VS2010 and VS2013 are running fine. In VS 2013 I'm getting the following error:

 

A first chance exception of type 'System.Threading.ThreadAbortException' occurred in mscorlib.dll

'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/2/ROOT-1-130747129336203456): Loaded 'C:\Users\russellb2\AppData\Local\Temp\3\Temporary ASP.NET Files\root\5c4b8c24\47f8008f\App_Web_45f5odym.dll'.

'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/2/ROOT-1-130747129336203456): Loaded 'C:\Windows\assembly\GAC_MSIL\CrystalDecisions.CrystalReports.Engine\13.0.2000.0__692fbea5521e1304\CrystalDecisions.CrystalReports.Engine.dll'. Cannot find or open the PDB file.

'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/2/ROOT-1-130747129336203456): Loaded 'C:\Windows\assembly\GAC_MSIL\CrystalDecisions.Shared\13.0.2000.0__692fbea5521e1304\CrystalDecisions.Shared.dll'. Cannot find or open the PDB file.

'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/2/ROOT-1-130747129336203456): Loaded 'C:\Windows\assembly\GAC_MSIL\CrystalDecisions.ReportAppServer.ClientDoc\13.0.2000.0__692fbea5521e1304\CrystalDecisions.ReportAppServer.ClientDoc.dll'. Cannot find or open the PDB file.

'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/2/ROOT-1-130747129336203456): Loaded 'C:\Windows\assembly\GAC_MSIL\CrystalDecisions.ReportAppServer.DataDefModel\13.0.2000.0__692fbea5521e1304\CrystalDecisions.ReportAppServer.DataDefModel.dll'. Cannot find or open the PDB file.

'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/2/ROOT-1-130747129336203456): Loaded 'C:\Windows\assembly\GAC_MSIL\CrystalDecisions.ReportAppServer.CubeDefModel\13.0.2000.0__692fbea5521e1304\CrystalDecisions.ReportAppServer.CubeDefModel.dll'. Cannot find or open the PDB file.

'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/2/ROOT-1-130747129336203456): Loaded 'C:\Windows\assembly\GAC_MSIL\CrystalDecisions.ReportAppServer.ReportDefModel\13.0.2000.0__692fbea5521e1304\CrystalDecisions.ReportAppServer.ReportDefModel.dll'. Cannot find or open the PDB file.

'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/2/ROOT-1-130747129336203456): Loaded 'C:\Windows\assembly\GAC_MSIL\CrystalDecisions.ReportAppServer.Controllers\13.0.2000.0__692fbea5521e1304\CrystalDecisions.ReportAppServer.Controllers.dll'. Cannot find or open the PDB file.

'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/2/ROOT-1-130747129336203456): Loaded 'C:\Windows\assembly\GAC_MSIL\CrystalDecisions.ReportAppServer.DataSetConversion\13.0.2000.0__692fbea5521e1304\CrystalDecisions.ReportAppServer.DataSetConversion.dll'. Cannot find or open the PDB file.

'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/2/ROOT-1-130747129336203456): Loaded 'C:\Windows\assembly\GAC_MSIL\CrystalDecisions.ReportAppServer.CommLayer\13.0.2000.0__692fbea5521e1304\CrystalDecisions.ReportAppServer.CommLayer.dll'. Cannot find or open the PDB file.

'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/2/ROOT-1-130747129336203456): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.

'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/2/ROOT-1-130747129336203456): Loaded 'C:\Windows\assembly\GAC_32\log4net\1.2.10.0__692fbea5521e1304\log4net.dll'. Module was built without symbols.

'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/2/ROOT-1-130747129336203456): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_32\CustomMarshalers\v4.0_4.0.0.0__b03f5f7f11d50a3a\CustomMarshalers.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.

'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/2/ROOT-1-130747129336203456): Loaded 'C:\Windows\assembly\GAC_MSIL\CrystalDecisions.ReportAppServer.XmlSerialize\13.0.2000.0__692fbea5521e1304\CrystalDecisions.ReportAppServer.XmlSerialize.dll'. Cannot find or open the PDB file.

'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/2/ROOT-1-130747129336203456): Loaded 'C:\Windows\assembly\GAC_MSIL\Microsoft.VisualStudio.Debugger.Runtime\12.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.Debugger.Runtime.dll'.

'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/2/ROOT-1-130747129336203456): Loaded 'C:\Windows\assembly\GAC_MSIL\CrystalDecisions.ReportSource\13.0.2000.0__692fbea5521e1304\CrystalDecisions.ReportSource.dll'. Cannot find or open the PDB file.

'iisexpress.exe' (CLR v4.0.30319: /LM/W3SVC/2/ROOT-1-130747129336203456): Loaded 'C:\Windows\assembly\GAC_MSIL\CrystalDecisions.ReportAppServer.CommonObjectModel\13.0.2000.0__692fbea5521e1304\CrystalDecisions.ReportAppServer.CommonObjectModel.dll'. Cannot find or open the PDB file.

The thread 0x2584 has exited with code 259 (0x103).

The program '[8772] iisexpress.exe' has exited with code -1073741676 (0xc0000094) 'Integer division by zero'.

 

I also get an error when trying the run the reports from VS 2010.

 

Please help in resolving this error.

 

Thanks,

 

Ben Russell

Viewing all 2556 articles
Browse latest View live


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