Quantcast
Channel: SCN : Discussion List - SAP Crystal Reports, version for Visual Studio
Viewing all 3636 articles
Browse latest View live

WPF Crystal report throws an exception when user tries to replace a file which is open during export of report.

$
0
0

I am using the latest version of crystal report CRforVS_13_0_10 with Visual Studio 2013.

 

I am working a WPF application and using the WPF crystalreportviewer control.

 

 

The steps to reproduce the exception is ,

 

1) Create a report.

 

2) Export report with sample.xls  as file name

 

3) Now open the sample.xls file in Excel

 

4) Again export the report with sample.xls  as file name

 

5) There is dialog which asks "Do you want to replace existing file sample.xls"

 

6)Click "Yes"

 

7) Now the exception will be thrown.

 

 

This is System.IO.IOException which is thrown by crystal report  when user tries to save the file which is already opened by user. Also there is no event provided to handle Export_click for WPF CrystalReportViewer where I can handle this.


How to release ReportDocument or CrystalReportViewer instances ?

$
0
0

In a large WPF application using Crystal Report for Visual Studio 13.0.10, i detect that instances of CrystalReporViewer and ReportDocument are not released. I reproduce this in this small code :

 

Imports CrystalDecisions.CrystalReports.Engine

Imports CrystalDecisions.Shared Class MainWindow 

 

Private Sub buPreview_Click(sender As Object, e As RoutedEventArgs) Handles buPreview.Click     

'Création des données     

Dim listPerson As New List(Of Person)    

 

listPerson.Add(New Person With {.Name = "Denis", .PhoneNumber = "0473"})     

listPerson.Add(New Person With {.Name = "Laurent", .PhoneNumber = "0473"})     

listPerson.Add(New Person With {.Name = "Fred", .PhoneNumber = "0473"})     

listPerson.Add(New Person With {.Name = "Jean", .PhoneNumber = "0473"})    

 

'Création du report     

Dim R As New reportdocument     

R.Load("CrystalReport1.rpt")     

R.SetDataSource(listPerson)     

 

'Aperçu     

Dim wCR As New WindowPreview    

wCR.CRV.Owner = Window.GetWindow(wCR)    

wCR.CRV.ViewerCore.ReportSource = R     

wCR.ShowDialog()     

 

'Nettoyage     

wCR.CRV.Dispose()    

wCR = Nothing     

R.Close()     

R.Dispose()     

R = Nothing 

End Sub

End Class

 

 

I try a lot of thing without success and memory profiler indicates instances number increase after each preview Can you help me please ?

 

Message was edited by: Don Williams Formatted the code - Copy it into Notepad and then paste it in and it removed the formatting tags.

 

Message was edited by: denis chatelain new fact : I try the same thing in a Windowsforms application and it works. No instances of reportdocument or crystalreportviewer stays in memory.

REFRESHING FIELDS

$
0
0

I am using Crystal with VS 2012.

In order to use the fields in Crystal I save the Dataset as XML doc

(ie DS.WriteXml(Server.MapPath("~/Crystal/cccRptActivityOpcoCc.xml"), XmlWriteMode.WriteSchema);)

And then point the Crystal to the XML datasource and start using it.  Works great!!!

 

My questions is if my Datasource XML changes, like I add 5 extra fields and need to modify the report,

How do I do this without destroying all the fields currently on the report from the current XML.

Like for example I already used 10 fields from the XML in the Crystal, but now there are another 5 fields but all the original 10 fields are still there.

 

Every time I try to update the XML with the additional field it trashes my .RPT template by removing all the XML fields I already used in the template.

Can this be avoided?


Thanks,

Yury

Crystal Report Toolbar images not displaying properly in IE?

$
0
0

Hi,

I am using VisualStudio 2012 ,crystal report version 13.0.2000.0 and sp5.

My problem is that after loading crystal report, toolbar image icons (such as print,export etc) are not showing properly ininternet explorer(version ie10). But it is displaying correctly in chrome and firefox.

What could be problem ?? Any help will be appreciated ..

ReportDocument.PrintToPrinter function Causes memory leak and Does not release temporary files.

$
0
0

Hi All,

 

    I have piece of code where I call the PrintToPrinter function to print the contents of the report to directly to printer. Here it prints the contents to the printer, But does not release the memory or temp files created while printing. It happens every time continuously. In fact I am even closing the report using the .Close and .Dispose functions. Still it is causing memory leak and leaves the temp files in the temp folder.

 

Here is the code that causes the problem.

 

public void PrintOut(int iCopies, bool bCollated, int iStart, int iStop)

        {

            rptDocument.PrintOptions.DissociatePageSizeAndPrinterPaperSize = false;

            rptDocument.PrintToPrinter(iCopies, bCollated, iStart, iStop);

        }

 

public void CloseReport()

        {

 

  frmPrintPreview.Close();

  frmPrintPreview.Dispose();

  rptDocument.Close();

  rptDocument.Dispose();

 

        }

 

 

Any help from any body would be greatly appreciated.

Crystal reports viewer will not prompt for parameters

$
0
0

Help,

I can not get crystal report viewer to prompt for parameters when called from IIS 8 on Server 2012 r2

 

I can get crystal report viewer to prompt for parameters when run from vs 2010 built in web service.

Being prompted for a parameter

$
0
0

Hi, Ludek,

 

I hope it's okay, but I thought it would be better to start a new post about the parameter issue.

 

To recap, the issue is:

 

I am writing a Windows application with VS 2012. This application has several reports. There is a particular report that has a parameter that I use as the header. In the Form Load event handler of the form that displays the report, I set the parameter with the line rpt.SetParameterValue(0, strHeader), where rpt is the instance of the report, and strHeader holds whatever I want the header to be.

 

 

 

This was working great. Last week I tweaked the report to and a line feed after the text in a field in the dataset. This had nothing to do with the header. After making this change, when I open the form with the report on it, I am prompted to enter the value for the parameter. I can find no reason for this. I put the line that opens the form with the report on it elsewhere in the application, and was not prompted for the parameter value. This is not an acceptable fix, though. I deleted the contents of the bin folder in the project’s folder, but got the same behavior.

 

The code I posted was the code that generated the .dll error, not the code working with parameters.

 

This is the code working with parameters:

 

    Private Sub frmPrintAppointments_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

 

        Dim rpt As New rptAppointments

        Dim strHeader as String

     

        ' I populate the dataset, ds

 

        strHeader = "All appointments"

        rpt.Load()

       rpt.SetParameterValue(0, strHeader)

       rpt.SetDataSource(ds)

       CrystalReportViewer1.Dock = Windows.Forms.DockStyle.Fill

       CrystalReportViewer1.ReportSource = rpt

       CrystalReportViewer1.Visible = True

 

    End Sub

 

You said:

 

Invariably, when you pass a value to the report, and the report prompts anyhow, either the type of the value is incorrect, or the parameter is assigned our of scope, so the engine has no idea it was assigned. Stepping through the code may help determine what is actually happening.

 

The parameter is of string type. How do you specify the scope of a parameter?

 

 

Thanks,

 

Ralph

Setting RecordSelectionFormula to multiple subreports is not working.

$
0
0

Hello,

 

I have an application vb.net Vs2005 winform an Crystal Report for .NET.
I have a report whith 3 subreports : i want to specify RecordSelectionFormula for the 3 subreport but it work only for one (the last have set) :

 

Part of my code :
  Dim dob_Report As New CrystalDecisions.CrystalReports.Engine.ReportDocument

 

dob_Report.SetDatabaseLogon("SYSTEM", "pass@123", "CP", "DB_LIVE")

                Dim Tables As CrystalDecisions.CrystalReports.Engine.Tables = dob_Report.Database.Tables

                Dim table As CrystalDecisions.CrystalReports.Engine.Table

                For Each table In Tables

 

                    table.LogOnInfo.ConnectionInfo.ServerName = "CP"

                    table.LogOnInfo.ConnectionInfo.DatabaseName = "DB_LIVE"

                    table.LogOnInfo.ConnectionInfo.UserID = "SYSTEM"

                    table.LogOnInfo.ConnectionInfo.Password = "pass@123"

                    table.ApplyLogOnInfo(table.LogOnInfo)

                    table.LogOnInfo.ConnectionInfo.AllowCustomConnection = True

                       table.Location = "DB_LIVE." & Mid(table.Location, InStrRev(table.Location, ".", Len(table.Location)) + 1)

                

                Next

 

 

                Dim osubrpt As New CrystalDecisions.CrystalReports.Engine.ReportDocument

                For i As Integer = 0 To dob_Report.Subreports.Count - 1

                    osubrpt = dob_Report.Subreports.Item(i)

 

 

                    Dim subrpt_Tables As CrystalDecisions.CrystalReports.Engine.Tables = osubrpt.Database.Tables

                    For Each table In subrpt_Tables

                        table.LogOnInfo.ConnectionInfo.ServerName = "CP"

                        table.LogOnInfo.ConnectionInfo.UserID = "SYSTEM"

                        table.LogOnInfo.ConnectionInfo.Password = "pass@123"

                        table.LogOnInfo.ConnectionInfo.DatabaseName = "DB_LIVE"

                        table.ApplyLogOnInfo(table.LogOnInfo)

                        table.LogOnInfo.ConnectionInfo.AllowCustomConnection = True

                                            table.Location = "DB_LIVE." & Mid(table.Location, InStrRev(table.Location, ".", Len(table.Location)) + 1)

                        'table.ApplyLogOnInfo(table.LogOnInfo)

                    Next

                    osubrpt.VerifyDatabase()

                Next

 

 

                dob_Report.VerifyDatabase()

 

 

 

'... I passed the code that set log info on the table of report and subreport

 

                        dob_Report.OpenSubreport("Summary").RecordSelectionFormula = "{a.DOCDATE} >= date(" & strFromDate & ") " & " AND " & "{a.DOCDATE} <= date(" & strToDate & ")" & " AND " & "{a.LOCATIONCODE} = '" & strLocation & "'" & " and " & "{a.DOCTYPE} = '" & "I" & "'" & stroption

                        dob_Report.RecordSelectionFormula = "{s.DOCDATE} >= date(" & strFromDate & ") " & " AND " & "{s.DOCDATE} <= date(" & strToDate & ")" & " AND " & "{s.LOCATIONCODE} = '" & strLocation & "'" & " and " & "{s.DOCTYPE} = '" & "I" & "'" & " and " & "{s.ex} <> '" & "exp" & "'" & stroption

 

 

 

'Now i want to set RecordSelectionFormula  for subreport


  form1.crystalreportviewer1.ReportSource = dob_Report

            form1.Text = strFormTitle

            form1.ShowDialog()

 

when i do that
first and second subreport don't apply the RecordSelectionFormula and show all data
third subreport is displaying proper.

 

I've tried dob_Report.OpenSubreport(0) this method also but results are same.

 

Environment:

Visual Studio 2005, Crystal Report 10, SAP HANA Studio, SAP 9.0


Datasource incorrect on deployed report

$
0
0

I've been looking for an answer to deploying a CR for a couple days now. I have finally figured out how to get the viewer to work on a deployed machine but now I find that the report thinks the database is where it is on my developing computer.

 

I created the report using CRXI developer edition upgraded to v 11.5.122.1838. Then I used VS2012 (vb) to add a form on which I placed the CR viewer and associated it with the report I wanted. The report had the datasource set to F:\Projects\VB\Rentals\Bin\Debug\X.mdb which is where the dB was located while I was developing the project. The project worked perfectly on my machine but that's where it was developed so I would expect that. I then used Installshield 2010 to create a deployment package for the program. The target machine was freshly loaded with Windows 7/64. After installing the program I can bring up the CRviewer but I get a Database Login form which shows the server location as F:\Projects\VB\Rentals\Bin\Debug\X.mdb and the Database at the same location. This is incorrect. The actual location of the database is Program Files (x86)\MyProgram\X.mdb. It will never be able to log in because the location at which it thinks the database is located does not exist.

 

Is this a problem with the way I saved the report? How can I change the datasource on the client machine? I've seen several answers to this around the net but I'm afraid I did not understand what they were talking about at all. I'm so close now ... please help.

 

I suppose I could create the directory structure on my development machine that I intend to use on the deployed machines and then set the datasource on the report that way ... but perhaps there is a way to do this programmatically. And doing it that way will force the user to install the program to my exact location ... I'd like to let them choose where the program is installed.

 

Thanks

Ken

Setting data source for subreports that are added during run-time to main report

$
0
0

Hi, all,

 

I have a situation where I have one RPT file, as the main placeholder, with its dataset/datatable as datasource, and

based on different configurations that user can edit, different subreports need to be added to it. I tried adding them with use of

subreportClientDocument = reportClientDocument.SubreportController.ImportSubreport(someName, filePath, section);

but am not sure how to then add them their own datatables that belong to different dataset then the main report's.

 

Thank you in advance.

Crystal report design issue when integrated with master page

$
0
0

crysmaster.jpgbecause of integrating the crystal report viewer tag in the content place holder of master page the report not showing print,export and page navigation buttons. can you please help me to change crystal report default design so that i will change to make them visible for the screen.

 

The asp.net code looks like this

<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">

</asp:Content>

<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolderTitle" Runat="Server">

</asp:Content>

<asp:Content ID="Content3" ContentPlaceHolderID="ContentPlaceHolderTab" Runat="Server">

    <h3>example page</h3>

 

 

</asp:Content>

<asp:Content ID="Content4" ContentPlaceHolderID="ContentPlaceHolderMessage" Runat="Server">

</asp:Content>

<asp:Content ID="Content5" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">

<div>

    

                <CR:CrystalReportViewer ID="rptBAEItemsdeliveredToFCA" runat="server"

             AutoDataBind="true" style="float:left" class="clear2 hideSkiplink"

             EnableDatabaseLogonPrompt="false" BestFitPage="False" ToolPanelView="None"

            HasPageNavigationButtons="true" HasCrystalLogo="False" HasDrillUpButton="True" HasGotoPageButton="True" HasSearchButton="True"

            HasToggleGroupTreeButton="True"  HasZoomFactorList="True"  />   

</div>

</asp:Content>

Adding a Subreport to existing report and getting this error, "Unable to connect: incorrect log on parameters"

$
0
0

I have taken on an existing vb.net project done in Visual Studio 2008 with crystal reports version Crystal Report XI.

 

The reports on their own work very well. Problem is I need to add information to my report which is a 'many-to-one' situation where for each Project Id that I am displaying I need to display several attached documents and the report I am working on is for several Project Id's.

 

I figured this would be a perfect situation for a SubReport. I created a separate report which calls a stored procedure to get all of the Attached Documents for a specific Project Id. I thought if I were to add this new SubReport to the Original Report and link the Project Id's, easy-peazy, I would be done.

 

This is not the case. I have vb code that loads the Original Report with a stored procedure and when this code runs with the setup I described above it fails when it is creating the final report with the following error:

 

Logon failed. Details: crdb_adoplus : Object reference not set to an instance of an object. Error in File C:\~\ProjectDescriptionReport {6BA19F79-2A12-4826-B1F6-456EF799963B}.rpt: Unable to connect: incorrect log on parameters.

 

I have no specific connections in my vb code for the reports. If I do not add the subreport to the main report, it loads correctly, so I know the error is caused by the subreport.

 

This is the code that creates the original report (sorry for dumping the code here, i just thought it would be easier to see all the code) :

 

Public Function LoadReport(ByVal inProjectNum As Integer, ByVal strProjectName As String) As DataTable ', ByVal inFiscalYear As Integer, ByVal inCompany As String) As DataTable

        Dim cnn As SqlConnection = Nothing

        Dim cmd As Data.SqlClient.SqlCommand

        Dim obj As New clsDataClass

        Dim dataAdapter As SqlClient.SqlDataAdapter

      

        Try

            LoadReport = New DataTable("DescriptionReport")

 

            cmd = New SqlCommand()      

            cnn = obj.Create_Connection()

 

            With cmd

                .CommandType = Data.CommandType.StoredProcedure

                .Connection = cnn

                .CommandTimeout = "60"

                .CommandText = "usp_GetProjectGroupSpecsCR"              

                .Parameters.AddWithValue("@ProjectNumber", inProjectNum)

                .Parameters.AddWithValue("@ProjectName", strProjectName)

            End With

 

            dataAdapter = New System.Data.SqlClient.SqlDataAdapter

            dataAdapter.SelectCommand = cmd

            dataAdapter.Fill(LoadReport)

 

            Dim oRpt As New ReportDocument()

 

            oRpt.Load(Server.MapPath("ProjectDescriptionReport.rpt"))

            oRpt.Refresh()

            oRpt.SetDataSource(LoadReport)

            'oRpt.OpenSubreport("AttachmentsReport").SetDataSource(LAR)

 

            oRpt.SetParameterValue("inProjectNum", inProjectNum)

            oRpt.SetParameterValue("strProjectName", strProjectName)

       

            oRpt.ExportToHttpResponse(ExportFormatType.PortableDocFormat, Response, True, "Projects_DescriptionReport") 'inCompany & "ProjectsReport_Description" & inFiscalYear) <-- Line where the error occures.

 

       .......

 

What I need to know is what is the proper way to add a subreport to a vb.net application?

 

From the ways I have tried it is clearly not working and I am out of ideas. I am fairly new to Crystal Reports and this way of coding it.

Any help for this would be greatly appreciated, I've been stuck on this for a while and am finally reaching out to the Crystal Report Specialists.

 

Thank you in advance,

Bryan

Disable object selection outline on Crystal Report Viewer

$
0
0

Hello all,

 

I have a problem with our reports having a default outline selection around margins of the report when the crystal report viewer comes up. It looks like a box with small dotted lines. Is there any way to turn this off? If I click on the the "Main Report" button, it goes away. If there is some code that I could use to click the "Main Report" button in the load event, then it could go away. This seems to be an issue with the latest version of crystal reports with this new report objects selection.

 

Thank you for all your help.

 

-Daniel

Embedding a Word document (OLE) and exporting the report to Word

$
0
0

I'm using SAP CR for Visual Studio (2010).

 

I need to embed a Word document using OLE into my report (displayed as icon).

 

The end users, however, need this report in a MS Word format, and need to have the embedded document in the exported Word file (displayed as icon and whenever they double click it the file must open).

 

This works when the report is in the CR viewer. However, when the report is exported from CR to Word format, the embedded document turns into an image.

 

Is it possible to export to Word and keep in the resulting document the embedded document as OLE?

 

 

Luis

Migrating from CR2008 to CR2011 gotchas...(Help)

$
0
0

So We have moved from CR2008 to CR2011 YAY!!

 

We have an older .net app (32) That is displaying our reports when called.

So I have ported all of the reports to the new web server where CR2011 resides.

I've installed the Crystal runtime 13 so as to work with VS2010 (Latest build of app)

 

Is there some way to do an IMPORT all on my ~500 reports so they are now runtime 13 compatiable?

I thought it might be a simple process of just pulling the reports over and running in the app, but that isn't working.

 

If I just try to run the reports I get an error 'File does not begin with '%PDF'

If I try to adjust the DSN I get a 'Not supported' error.

 

I did try the 32 bit odbc DSN build option, but so far all of this has resulted in the report not working in the app.

 

(Sadly I did have the report working in CR2011...until I tried to make it work in the application and adjusted too many things, so I went back to the original version...which dosen't work anyway...yet...but hey it's still early here... :-)

 

Thanks for any thoughts...links...direction... etc...

 

B


Parameter selection values not displayed after migration from Crystal ActiveX Viewer to .Net Viewer

$
0
0

Our software has a screen embedded within it where the customer can run their Crystal reports, this used the ActiveX/COM report viewer which worked well enough and the customer was happy.

 

Because the ActiveX/COM report viewer is now obsolete we built a screen using the new .Net viewer.

 

Unfortunately the customer is now very unhappy because the .Net viewer is not displaying the selection criteria very well.

 

For example:

They have a report of sales for a branch, when they run the report the choose the branch to report on.
In the old screen using the ActiveX/COM viewer the report displayed a list of branches and they picked one from the list - see below:

ActiveX.jpg

 

 

In the new screen using the .Net Viewer they don't get a list, they have to type in the branch number - see below:

DotNet.jpg

 

I've spent two hours searching the SAP site for answers and found nothing - I expect the answer is in there somewhere but I can't find it.

Has any experience this?

I don't know if this a deficiency in the .Net viewer or something I haven't done.

Any help gratefully received!

Crystal reports 13.5 : Export to excel formatting

$
0
0

Hi. We are developing web application using VS 2010. We are using crystal reports 13. Initially we had VB6 application which used crystal reports 8.5. The format for excel report generated by crystal report 8.5 and crystal report 13.5 is different. We are using the export option in crystal report viewer for both reports. Is there any way in which we could make changes to crystal reports 13.5 to achieve similar excel formatting as crystal reports 8.5.

ReportDocument.PrintToPrinter function Causes memory leak and Does not release temporary files.

$
0
0

Hi All,

 

    I have piece of code where I call the PrintToPrinter function to print the contents of the report to directly to printer. Here it prints the contents to the printer, But does not release the memory or temp files created while printing. It happens every time continuously. In fact I am even closing the report using the .Close and .Dispose functions. Still it is causing memory leak and leaves the temp files in the temp folder.

 

Here is the code that causes the problem.

 

public void PrintOut(int iCopies, bool bCollated, int iStart, int iStop)

        {

            rptDocument.PrintOptions.DissociatePageSizeAndPrinterPaperSize = false;

            rptDocument.PrintToPrinter(iCopies, bCollated, iStart, iStop);

        }

 

public void CloseReport()

        {

 

  frmPrintPreview.Close();

  frmPrintPreview.Dispose();

  rptDocument.Close();

  rptDocument.Dispose();

 

        }

 

 

Any help from any body would be greatly appreciated.

Printing with crystal reports

$
0
0

when i click on print report it pops up export to pdf. i just want to print directly

How to Connect crystal report with multiple databases?

$
0
0

I Think my question is really clear

 

I ask this because i think i already used every way logic in my head

ConnectionInfo

IConnectionInfo

PropertyBag

DataDefModel

Etc

i found Ludek's post about "Ras Connection Info Code" i think this will solve my case but still no luck 

 

Dear Ludek i try your suggestion from here  Until the "Ras Connection Info Code" give an Error

See the end of this message for details on invoking

just-in-time (JIT) debugging instead of this dialog box.

 

************** Exception Text **************

System.IndexOutOfRangeException: Index was outside the bounds of the array.

   at CodeBuilder_RasConnectionInfo.frmRasConnectionInfo.VBConnectionCode(ReportDocument boReportDocument) in C:\Reza\Development\CodeBuilder-RasConnectionInfo\Form1.vb:line 183

   at CodeBuilder_RasConnectionInfo.frmRasConnectionInfo.btnLoadReport_Click(Object sender, EventArgs e) in C:\Reza\Development\CodeBuilder-RasConnectionInfo\Form1.vb:line 16

   at System.Windows.Forms.Control.OnClick(EventArgs e)

   at System.Windows.Forms.Button.OnClick(EventArgs e)

   at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)

   at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)

   at System.Windows.Forms.Control.WndProc(Message& m)

   at System.Windows.Forms.ButtonBase.WndProc(Message& m)

   at System.Windows.Forms.Button.WndProc(Message& m)

   at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)

   at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)

   at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

 

 

************** Loaded Assemblies **************

mscorlib

    Assembly Version: 2.0.0.0

    Win32 Version: 2.0.50727.4927 (NetFXspW7.050727-4900)

    CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll

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

CodeBuilder-RasConnectionInfo

    Assembly Version: 1.0.0.0

    Win32 Version: 1.0.0.0

    CodeBase: file:///C:/Reza/Development/CodeBuilder-RasConnectionInfo/bin/Debug/CodeBuilder-RasConnectionInfo.exe

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

Microsoft.VisualBasic

    Assembly Version: 8.0.0.0

    Win32 Version: 8.0.50727.4927 (NetFXspW7.050727-4900)

    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/Microsoft.VisualBasic/8.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll

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

System

    Assembly Version: 2.0.0.0

    Win32 Version: 2.0.50727.4927 (NetFXspW7.050727-4900)

    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll

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

System.Windows.Forms

    Assembly Version: 2.0.0.0

    Win32 Version: 2.0.50727.4927 (NetFXspW7.050727-4900)

    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll

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

System.Drawing

    Assembly Version: 2.0.0.0

    Win32 Version: 2.0.50727.4927 (NetFXspW7.050727-4900)

    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll

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

System.Configuration

    Assembly Version: 2.0.0.0

    Win32 Version: 2.0.50727.4927 (NetFXspW7.050727-4900)

    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll

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

System.Xml

    Assembly Version: 2.0.0.0

    Win32 Version: 2.0.50727.4927 (NetFXspW7.050727-4900)

    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll

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

System.Runtime.Remoting

    Assembly Version: 2.0.0.0

    Win32 Version: 2.0.50727.4927 (NetFXspW7.050727-4900)

    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Runtime.Remoting/2.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll

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

CrystalDecisions.CrystalReports.Engine

    Assembly Version: 13.0.2000.0

    Win32 Version: 13.0.0.99

    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/CrystalDecisions.CrystalReports.Engine/13.0.2000.0__692fbea5521e1304/CrystalDecisions.CrystalReports.Engine.dll

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

CrystalDecisions.Shared

    Assembly Version: 13.0.2000.0

    Win32 Version: 13.0.0.99

    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/CrystalDecisions.Shared/13.0.2000.0__692fbea5521e1304/CrystalDecisions.Shared.dll

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

CrystalDecisions.ReportAppServer.CommLayer

    Assembly Version: 13.0.2000.0

    Win32 Version: 13.0.0.99

    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/CrystalDecisions.ReportAppServer.CommLayer/13.0.2000.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.CommLayer.dll

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

CrystalDecisions.ReportAppServer.ClientDoc

    Assembly Version: 13.0.2000.0

    Win32 Version: 13.0.0.99

    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/CrystalDecisions.ReportAppServer.ClientDoc/13.0.2000.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.ClientDoc.dll

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

System.Data

    Assembly Version: 2.0.0.0

    Win32 Version: 2.0.50727.4927 (NetFXspW7.050727-4900)

    CodeBase: file:///C:/Windows/assembly/GAC_32/System.Data/2.0.0.0__b77a5c561934e089/System.Data.dll

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

CrystalDecisions.ReportAppServer.Controllers

    Assembly Version: 13.0.2000.0

    Win32 Version: 13.0.0.99

    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/CrystalDecisions.ReportAppServer.Controllers/13.0.2000.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.Controllers.dll

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

CrystalDecisions.ReportAppServer.DataDefModel

    Assembly Version: 13.0.2000.0

    Win32 Version: 13.0.0.99

    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/CrystalDecisions.ReportAppServer.DataDefModel/13.0.2000.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.DataDefModel.dll

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

CrystalDecisions.ReportAppServer.DataSetConversion

    Assembly Version: 13.0.2000.0

    Win32 Version: 13.0.0.99

    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/CrystalDecisions.ReportAppServer.DataSetConversion/13.0.2000.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.DataSetConversion.dll

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

CrystalDecisions.ReportAppServer.CubeDefModel

    Assembly Version: 13.0.2000.0

    Win32 Version: 13.0.0.99

    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/CrystalDecisions.ReportAppServer.CubeDefModel/13.0.2000.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.CubeDefModel.dll

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

CrystalDecisions.ReportAppServer.ReportDefModel

    Assembly Version: 13.0.2000.0

    Win32 Version: 13.0.0.99

    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/CrystalDecisions.ReportAppServer.ReportDefModel/13.0.2000.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.ReportDefModel.dll

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

log4net

    Assembly Version: 1.2.10.0

    Win32 Version: 1.2.10.0

    CodeBase: file:///C:/Windows/assembly/GAC_32/log4net/1.2.10.0__692fbea5521e1304/log4net.dll

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

System.Web

    Assembly Version: 2.0.0.0

    Win32 Version: 2.0.50727.4927 (NetFXspW7.050727-4900)

    CodeBase: file:///C:/Windows/assembly/GAC_32/System.Web/2.0.0.0__b03f5f7f11d50a3a/System.Web.dll

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

CustomMarshalers

    Assembly Version: 2.0.0.0

    Win32 Version: 2.0.50727.4927 (NetFXspW7.050727-4900)

    CodeBase: file:///C:/Windows/assembly/GAC_32/CustomMarshalers/2.0.0.0__b03f5f7f11d50a3a/CustomMarshalers.dll

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

 

************** JIT Debugging **************

To enable just-in-time (JIT) debugging, the .config file for this

application or computer (machine.config) must have the

jitDebugging value set in the system.windows.forms section.

The application must also be compiled with debugging

enabled.

 

For example:

 

<configuration>

    <system.windows.forms jitDebugging="true" />

</configuration>

 

When JIT debugging is enabled, any unhandled exception

will be sent to the JIT debugger registered on the computer

rather than be handled by this dialog box.

 

 

i don't know what happen

 

is there any way to solve my case??

 

actually i only need 3 databases connected in my report

in each databases i insert about 3 - 8 command

 

i'm using VS2010 Ultimate

CR Version=13.0.2000.0 (ASP.Net)

SQL Server Standard Edition 10.50.2500.0

and

SQL Server Standard Edition 10.50.1600.1 to test move the datasources

 

can someone give me an enlightment about my case

 

every suggestion would be great

 

Thanks

Zeal

Viewing all 3636 articles
Browse latest View live


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