Crystal Viewer report hangs

Hello,
I am having a problem deploying a Crystal report to run under IIS/aspx using the CrystalReportViewer.
I rdp to the windows 2008 server, start crystal reports and the report works under Crystal on the server fine.
Running the same crystal report on the same server using IIS/aspx and the viewer has a problem. I load the aspx page, the viewer shows a prompt with server name, database name, user name and password information. The details are all right, I enter the password and I just get the message 'Please wait while the document is being processed' that just stays there indefinitely. Everything is on the same server except the SQL Server and database. Crystal Reports and ODBC reach SQL Server fine and Crystal shows the report from the server, but the viewer just hangs.
I have done this on two other customer servers and the above worked fine - the crystal report showed in the viewer. There is something different on this server that I cannot figure out.
I stripped down the report to a single table and a few fields u2013 no multiple tables, joins, sub-reports, created a very simple report to try and isolate the problem. I also removed all the VB code behind u2013 pretty well just load the report and display.
I loaded the CRRuntime_32bit_13_0_2 on the server, created an IIS application, copied over the report and aspx/code behind and tested.
the web config has the Version=13.0.2000.0 assemblies.
Any help resolving this issue would be appreciated. I have looked at 100s of google posts, most very similar, but none have helped get this report going.
Thanks Nick

Hello,
I took a step back to basics.
I copied one of the sample projects and made the changes needed to get it working properly.
crsdk_net_samples_12_0_\Reduced_Code_Tutorials\ReducedCode_DBLogon\CS_Web_ReducedCode_DBLogon\CS_Web_ReducedCode_DBLogon.
The report appeared properly in the browser now - no hanging after entering login inforamtion.
I tested with the client 10 and native SQL Server drivers and both worked fine.
I thought great problem solved, but when went back to version using some code behind same problem. I checked the aspx and made it identical to the one that works. So the aspx, IIS app, Crystal report, everything else is identical. The only difference is the cod behind.
**** Using this works
<Report FileName="C:\inetpub\wwwroot\CrystalReports\Transcript_ReportV3.rpt">
**** replace with codebehind creates hang
        Response.Write("Report Path = " & Server.MapPath("Transcript_ReportV3.rpt") & "</BR>")
        Test1.Load(Server.MapPath("Transcript_ReportV3.rpt"))
        With CrystalReportViewer
            .ReportSource = Test1
        End With
The full code used is below.
Getting closer but still not there yet.
Any other ideas appreciated.
Thanks Nick
'************ *This works - report shows in browser*
<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Test-cl10-dynamic.aspx.cs" Inherits="_Default" %>
<%@ Register Assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"
    Namespace="CrystalDecisions.Web" TagPrefix="CR" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title></title>
    <link href="/aspnet_client/System_Web/2_0_50701/CrystalReportWebFormViewer3/css/default.css"
        rel="stylesheet" type="text/css" />
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server" AutoDataBind="True"
            Height="1039px" ReportSourceID="CrystalReportSource1" Width="901px" />
        <CR:CrystalReportSource ID="CrystalReportSource1" runat="server">
            <Report FileName="C:\inetpub\wwwroot\CrystalReports\Transcript_ReportV3.rpt">
            </Report>
        </CR:CrystalReportSource>
    </div>
    </form>
</body>
</html>
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class _Default : System.Web.UI.Page
    protected void Page_Load(object sender, EventArgs e)
'************ *This does not work - report hangs after entring authenticaion information*<%@ Page Language="VB" AutoEventWireup="true" CodeFile="Test1-dynamic.aspx.vb" Inherits="Test1" %>
<%@ Register Assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" Namespace="CrystalDecisions.Web" TagPrefix="CR" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    <title></title>
    <link href="/aspnet_client/System_Web/2_0_50701/CrystalReportWebFormViewer3/css/default.css" rel="stylesheet" type="text/css" />
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <asp:Label id="MyText" runat="server" />
    <CR:CrystalReportViewer ID="CrystalReportViewer" runat="server" AutoDataBind="True" Height="1039px" Width="901px" />
    </div>
    </form>
</body>
</html>
Partial Class Test1
    Inherits System.Web.UI.Page
    Dim Test1 As New CrystalDecisions.CrystalReports.Engine.ReportDocument
    Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init
        Response.Write("Report Path = " & Server.MapPath("Transcript_ReportV3.rpt") & "</BR>")
        Test1.Load(Server.MapPath("Transcript_ReportV3.rpt"))
        With CrystalReportViewer
            .ReportSource = Test1
        End With
    End Sub
End Class
Edited by: Don Williams on Jan 27, 2012 9:17 AM

Similar Messages

  • Need Help with Crystal viewer and ActiveX

    Hi !!
    I have a problem that i cant seem to be able to solve. I had alot of help from the forum but i think i got everything mixtup now...
    From my addon i can print with CrystalReport Viewer or i cant print a Crystal report directly to my default printer, so thats good and working well. The problem is with Crystal Viewer that drags on the SBO screen and stays on the task bar.
    It is strongly recommended to use an Activex to display my Crystal Viewer report. I tried so many differrent ways allways ending up with class id errors, or private class errors.
    My report is called c:\report.rpt
    My Working CrystalViewer form is called 'frmCRV'
    Can some one help me thru this last step...  I tried with the Activex sample in SDK but i think i dont have to use the Tree function ??? am i right ??
    I'm running on SBO 2005 SP1 PL3
    Crystal Report .net V10 and .net for code.
    Thanks you all for your patience.

    Hi Again !
    I can now open a form with an Activex part but i cant pass my CrystalViewer in it. Always says specified cast not valid.
    Thanks

  • Report can't open in Crystal Viewer

    Post Author: peachpx
    CA Forum: Publishing
    Hi -
    Can anyone help?
    I am scheduling report with e-mail as a destination.  Once e-mail is received it fails to open with Crystal Viewer XI with following error:
    Problem Encountered: com.crystaldecisions.reports.common.GeneralException: Unable to load database connector  'com.crystaldecisions.reports.queryengine.driverImpl.DriverLoader'.
    Does anyone knows how to solve this?
    Also does anyone knows how to open subreport in Crystal Viewer?
    Appreciate any help, thanks!

    Hi Krish,
    Thanks for replying.
    The report can't be opened even on server side. We don't try to open it on client.
    I supposed that some files version maybe conflicted with Crystal 12. If the server has been installed previous CR version, how can I clean it?
    Thanks,
    Simeng

  • Crystal report print directly without crystal viewer

    HI !
    In my addon i use Crystal Report. What would be the code i need to add if i want to print directly instead of having to go thru the crystal viewer.
    The crystal viewer gives me lots of problems with painting the screen when i move the form and it allways opens in the task bar. I cant seem to control the window sizes of the viewer either so unless it's easyer to fix those problem i need help to go and print direct without the viewer....
    Thanks for your time

    Hi John !
    I finnaly made it work... 
    here's what i used
    Dim objAppl As New CRAXDRT.Application
                Dim objReport As CRAXDRT.Report
                objReport = objAppl.OpenReport("C:Program FilesSAPSAP Business OneAddOnsDutiesresultat.rpt")
                objReport.PrintOut(True, 1)
    Thanks alot for your time.
    p.s.: I can i get the print window open on the screen instead of the task bar ??? it did that with the viewer too...
    Thanks again

  • Crystal 2008, BO XI 3.1, cannot view reports, UserID password dialog shows

    Hello Forum,
    We have Crystal Reports 2008 installed on XP machine, and Business Objects XI 3.1 on a Windows Server 2008 machine. We can view sample reports on Server machine in CMC (right click view in report folder)
    We can also view samples reports in BusinessObjects on XP machine. However if we create a report (simple report with no parameters) on XP machine and save to BusinessObjects server, then try and open report, we get a dialog indicating 'Further information is required' and User Id and Passworsd test box show.
    This dialog shows repeatedly even when we enter credentials relevant to database/report. I have looked in .pdf documentation and forum and not had any success in resolving this. Any help would be appreciated, The report database is SQL Server,
    Thanks,
    Paul James

    DB 'Connection' in Crystal Report (2008) and DNS on BusinessObject (XI 3.1) machine need to be the same, to view report via Central Management Console
    In .NET code calling report against SQL Server (2008) database, Crytal Connection needs to be Microsoft OLE DB SQL Provider for SQL Server.

  • Unable to view next page of report in Crystal Viewer using JAVA

    Post Author: sartu
    CA Forum: JAVA
    We have been able to successfully deploy a report through Crystal viewer XI /Java /Sun Solaris, report works fine, able to suppress group tree, but unable to veiw 2nd page of report.    The suppression of the group tree in the web page required a simple command , is there one that allows us to proceed to the next page?  I am not JAVA savvy so I will be communicating this to the person who will be making the correction, please pardon me if I left something out.
    Thank you!

    Post Author: Ted Ueda
    CA Forum: JAVA
    It's not clear whether your issue is with the Page Navigation controls not working, or whether you wish to programmatically skip the first page and go to the next page.  If the latter, then the CrystalReportViewer class has a showNthPage method.
    Sincerely,
    Ted Ueda

  • Crystal Reports hanging in Enterprise

    Just suddenly we are facing issues with some of the crystal reports . they were working fine in Business objects up to yesterday but today they are hanging , even when we try to open/modify parameter they hang. we are using Crystal report 2008 and BO R3.1.
    evnthough some reports hangs the others just run fine.
    we noticed that , the reports which are stopped working are the ones that have  " Printer Option" unchecked in Crystal Report designer . when we open these reports in designer and check that option on pagesetup and  save them back in enterprise they are working.
    I have no luck to find the rootcause of this issue. what have changed that caused this issue.
    It is happening on both test and production environments. I read somewhere on forum that it might be  related to printer driver, but we haven't updated any driver and nothing seems to be changed.
    any ideas?

    In the page setup put the option Microsoft XPS Document Writer in the Printer option before publishing it to BO Server .

  • Reports built in CR Developer - Exporting to Excel through Crystal Viewer XI

    Post Author: Screenpoet
    CA Forum: Other
    I'm not sure if this is the right forum for this question - so if not - please let me know.  Currently we build small reports in Crystal Developer XI.  As we only have this type of license (and only 2 of them), we only share reports to our end-users by having them install the Crystal Viewer XI application.  Our users are indicating that they can open the reports, but when they export to Excel, the column headings are not exporting with the data.  We also tried exporting in PDF and RTF format and the column headings do export.  Any insight on why the Excel export would not bring in the column headings?  

    Upgrade to CR XI R2 for free and test again

  • Crystal Reports are not centered when viewing on Crystal Viewer

    Hi
    I´d like to ask you if you reported some problem of using subreports and during the visualization from the Crystal Viewer the main report and of course the subreports are not centered. I´m running Vs.Net 2005 with CR 10.
    The main report and subreports access ADO.NET. Only one parameter is passed by the user. If we test the application and address the visualization to the crystal report viewer it is showed on right side even using DisplayGroupTree = False. But if we export the report to PDF it is showed centered. Is it a way to fix this one?
    Any advice or suggestions?
    Tks,
    Isocler

    When you say you're using v10 with VS2005, do you mean the full CR v10 product or the version that comes with VS.NET 2005 (version 10.2)?  Make sure you're using/referencing the 10.2.* CR assemblies in your project, as the 10.0.* are not supported.
    If you have the correct assemblies referenced, then make sure you have the latest patches applied.  I think there may have been a fix for DIV tags.
    -MJ

  • Crystal ActiveX Report Viewer Control 12.0 Installer

    Crystal ActiveX Report Viewer Control 12.0 Installer
    Hi, i need to install the activex control into every single client pc. I know ie browser is supposed to download it at the very first time when it hits crystal report page, but due to certain restriction applied to client pcs, this feature is blocked.
    Does anyone have Crystal ActiveX Report Viewer Control 12.0 installer ? How can I install it on the clients pc ?
    Thanks a lot!

    Copy the PrintControl.cab from the server location u201C<installation drive>\Program Files\Common Files\Business Objects\4.0\crystalreportviewers12\ActiveXControlsu201D to the client machine. Then Extract the PrintControl.cab. Then register (regsvr32) the printcontrol.dll.
    - Ludek

  • Crystal ActiveX Report Viewer Controlのインストールについて

    皆さん、こんにちは。
    クリスタルレポートXIR2をASP(ASP.NETではない方です)で
    表示しているのですが、クライアント側のブラウザにおいて
    ActiveXのCrystal ActiveX Report Viewer Control 11.5のインストールに失敗したり、
    インストールできてもうまく動作しなかったりする事があるのですが、
    うまくインストール出来なかった場合の対処法・再インストール方法などは、
    ありますでしょうか?
    ご教示下さい。宜しくお願いいたします。
    利用形態:ASPを使ったブラウザ上への帳票表示
    [サーバの環境]
    windows 2003 server R2
    Crystal ReportsXI R2 SP6
    DB:oracle10g
    開発言語:ASP
    [クライアントの環境・ブラウザ]
    WindowsXP SP3 +IE6
    Windows7 32bit +IE8


    Edited by: tamayyy on Nov 22, 2011 4:15 PM

  • How to View Crystal 9 reports using SEAM framework

    Experts,
    I was wondering if there is a tutorial or posts anywhere that would help me, or at least point me in the right direction, to some development ideas on viewing Crystal 9 reports using a SEAM framework.  Any help would be much appreciated.  Thanks.

    Not aware of anything. This is actually the first time I hear of SEAM framework (call me ignorant).
    I suspect posting to the SEAM forum may be an idea. I searched there, but did not find anything at all. Also, reading a bit on SEAM, try to post your query to the Java Development - Crystal Reports forum:
    SAP Crystal Reports, version for Eclipse
    Perhaps they may have something for you to start on.
    CR 9 has been out of support for 3+ years, so no fixes. If you use a supported version of CR, then fixes would only be done if the issue can be reproduced on a supported platform.
    Ludek

  • Crystal Viewer not allowing advance on pages for Crystal Report

    We can execute a report and display it in the crystal viewer, but a report that has more than one page does not advance to the second or preceding pages even though the advance page buttons appear at the top of the viewer. Has anyone run across this?  How do I solve this?
    Thanks!

    Web app or desktop app?
    I'm guessing web app, even though this post is in the Desktop app forum.
    The web viewer works by postback to the invoking page.  If you  don't check for postback and your code is re-loading the report, then it'll always re-run and show the first page.
    There's sample code on the support site - I'd recommend trying one of those first.
    If desktop app, then you'd need to give more details on the workflow.
    Sincerely,
    Ted Ueda

  • Winform Crystal Viewer & Crystal Report Server 2013

    Hi everyone,
    I was curious whether it's possible to display a Crystal Report that is located on a Crystal Report Server 2013 via the Winform Crystal viewer (CrystalDecisions.Windows.Forms.CrystalReportViewer) given everything is set such as single sign on etc.?
    Can anyone point me to the right members or give an example?
    I know that we can access the report through the URL, e.g.
    http://<servername>:<port>/BOE/CrystalReports/viewrpt.cwr?id=1152&apsuser=JLee&apspassword=secret&ap
    sauthtype=secEnterprise
    This will need to be open in a web browser though. We would like to have a UX where user opens up the report in a winform that contains additional features such as actions etc.
    Thank you.

    Hello Darin,
    Check the below information
    Example Links:  Crystal Report Hosting :: Crystal Reports In Winforms Windows Forms With Parameters &amp;laquo; Crystal Report Hosting N…
    c# - Open Crystal Report in Winform - Stack Overflow
    C# Crystal Reports step by step
    Thanks,
    DJ

  • Crystal Reports Hangs on .Load event

    Hi ,
    We are using CR 2011 on Windows environment (2008 R2) and  run the following workflow.
    1. We have created a rpt with 9 sub reports.
    2. We would like to print the port to a particular printer and hence have set the flag <NO Printer> on the report
    3. The application is a windows based application and not a web based application.
    4. We have tested the report by launching the report and printing it on the desired printer.
    5. We have a windows service that executes the code of reading the report and printing it out as a pdf / printer.
    6. Step 4 is an event based activity that occurs as frequently as every 2 minutes.
    7. The database is Oracle 11g
    PROBLEM:
    1. Generally all runs well, however once / twice a day the report hangs.
    2. We have created a dump file and observed that the hang occurs on .LOAD event.
    3. We are using the .LOAD with a single parameter that of the report name.
    4. We also observed that the spooler service hangs
    5. We are disposing the report immediately after printing it.
    After the problem occurs we are forced to start the windows service and the printer spooler service.
    Solutions tried so far:
    1. Changing the No Printer flag did not give any results.
    2. We have created a job that restarts the windows service and the spooler service after a period of 30 mins. - This has minimized the occurances but not eliminated the problem.
    Pseudo code:
    ReportDocument CR = new ReportDocument()
    CR.Load(<report file name);
    //Set Main data Source
    CR.Database.Tables[0].SetDataSource(ADODB.Recordset)
    //set sub reports
    CR.Subreports[<Index>].Database.Tables[0].SetDataSource(data table)
    //here it prints on default printer or the set printer. (Printer s are UNC printers, however we register them - they are visible as local printers on the given machine -  locally before printing)
    CR.PrintToPrinter(noOfCopies, false, fromPage, toPage);
    CR.Close()
    CR.Dispose()
    IF required we can also provide the rpt file and any other details.
    Our customers are really suffering cause of this and any help would be really appreciated.
    Thanks
    Anil

    Hi Ludek,
    In continuation, please find the stack for the hang.
    As we can see there is a OutOfMemory exception followed by a Stack Overflow exception and then we have the CrstalReports function calls.
    005b99b4   
    2      
    64 CrystalDecisions.ReportAppServer.ClientDoc._ISCDClientDocumentEvents_OnPropertyChangedEventHandler
    005b98f8   
    2      
    64 CrystalDecisions.ReportAppServer.ClientDoc._ISCDClientDocumentEvents_OnPropertyChangingEventHandler
    005b983c   
    2      
    64 CrystalDecisions.ReportAppServer.ClientDoc._ISCDClientDocumentEvents_OnSavedEventHandler
    005b9780   
    2      
    64 CrystalDecisions.ReportAppServer.ClientDoc._ISCDClientDocumentEvents_OnSavingEventHandler
    005b96c4   
    2      
    64 CrystalDecisions.ReportAppServer.ClientDoc._ISCDClientDocumentEvents_PreSavingEventHandler
    005b9608   
    2      
    64 CrystalDecisions.ReportAppServer.ClientDoc._ISCDClientDocumentEvents_OnClosedEventHandler
    005b954c   
    2      
    64 CrystalDecisions.ReportAppServer.ClientDoc._ISCDClientDocumentEvents_OnClosingEventHandler
    005b9490   
    2      
    64 CrystalDecisions.ReportAppServer.ClientDoc._ISCDClientDocumentEvents_PreClosingEventHandler
    79ad78cc   
    1      
    68 System.Diagnostics.Tracing.EventSource+OverideEventProvider
    77eb9860   
    1      
    68 System.Drawing.BufferedGraphicsContext
    5fb97d40   
    1      
    68 System.Configuration.AppSettingsSection
    04028214   
    1      
    68 System.Text.RegularExpressions.Match
    79ae71b8   
    2      
    72 System.Globalization.CompareInfo
    79ae0b30   
    2      
    72 System.Threading.ExecutionContext
    79ae0014   
    3      
    72 System.Guid
    79ad7804   
    1      
    72 System.Collections.Generic.Dictionary`2+Entry[[System.String, mscorlib],[System.Resources.ResourceLocator, mscorlib]][]
    5fb97254   
    3      
    72 System.Configuration.ConfigurationElementCollection+Enumerator
    5fb9715c   
    6      
    72 System.Configuration.ConfigurationValues+ConfigurationElementsCollection
    049d8ff4   
    3      
    72 System.Windows.Forms.Layout.DefaultLayout+AnchorInfo
    049d71dc   
    6      
    72 System.Windows.Forms.ControlEventArgs
    049d70b4   
    3      
    72 System.Windows.Forms.Layout.LayoutUtils+MeasureTextCache
    04059b30   
    1      
    72 System.Diagnostics.FilterElement
    03e04348   
    3      
    72 System.Collections.Generic.List`1[[Microsoft.Win32.SystemEvents+SystemEventInvokeInfo, System]]
    79ae9250   
    1      
    76 System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo
    049d7208   
    1      
    76 System.Windows.Forms.NativeMethods+STARTUPINFO_I
    79ae4468   
    5      
    80 System.Text.DecoderReplacementFallback
    79ae4418   
    5      
    80 System.Text.EncoderReplacementFallback
    79ae01b4   
    5      
    80 System.DateTime
    79ada500   
    2      
    80 System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
    79ad9728   
    1      
    80 System.Resources.ResourceManager
    79ad7268   
    1      
    80 System.Resources.ResourceReader
    79ad5374   
    2      
    80 System.IO.BinaryReader
    77eb942c   
    2      
    80 System.Drawing.SafeNativeMethods+LOGFONT
    77eb8c74   
    2      
    80 System.Drawing.Icon
    0403c604   
    4      
    80 System.Text.RegularExpressions.ExclusiveReference
    040285b4   
    4      
    80 System.Collections.Specialized.HybridDictionary
    040284e0   
    4      
    80 System.Collections.Specialized.ListDictionary+DictionaryNode
    79ae2570   
    1      
    84 System.ExecutionEngineException
    79ae252c   
    1      
    84 System.StackOverflowException
    79ae24e8   
    1      
    84 System.OutOfMemoryException
    79ae2394   
    1      
    84 System.Exception
    79ad7460   
    3      
    84 System.Resources.ResourceFallbackManager+<GetEnumerator>d__0
    051abba4   
    1      
    84 System.Windows.Forms.SaveFileDialog
    049d8aa8   
    7      
    84 System.Windows.Forms.UICuesEventArgs
    049d611c   
    3      
    84 System.Windows.Forms.PropertyStore+PaddingWrapper
    049d53c4   
    3      
    84 System.Windows.Forms.Padding
    04059a1c   
    1      
    84 System.Diagnostics.ListenerElement
    04026734   
    2      
    88 System.Diagnostics.TraceSwitch
    049d643c   
    1      
    92 System.Collections.Generic.KeyValuePair`2[[System.Drawing.Font, System.Drawing],[System.Windows.Forms.Internal.WindowsFont, System.Windows.Forms]][]
    79ae68c8   
    3      
    96 System.Reflection.MemberFilter
    79ad7f34   
    3      
    96 System.Text.UTF8Encoding+UTF8Decoder
    7971adc8   
    4      
    96 System.Collections.Generic.List`1[[System.Reflection.MethodInfo, mscorlib]]
    7971a530   
    2      
    96 System.Collections.Generic.Dictionary`2[[System.Type, mscorlib],[System.Byte[], mscorlib]]
    7971941c   
    4      
    96 System.Collections.Generic.List`1[[System.String, mscorlib]]
    5fb97e10   
    1      
    96 System.Configuration.KeyValueConfigurationCollection
    5fb95c3c   
    2      
    96 System.Configuration.ClientConfigPaths
    05199e20   
    6      
    96 System.Windows.Forms.KeyEventArgs
    049d18fc   
    4      
    96 System.Windows.Forms.NativeMethods+TRACKMOUSEEVENT
    04059794   
    1      
    96 System.Diagnostics.SwitchElementsCollection
    04059710   
    1      
    96 System.Diagnostics.SharedListenerElementsCollection
    04059588   
    1      
    96 System.Diagnostics.SourceElementsCollection
    0403c1dc   
    4      
    96 System.Collections.Generic.List`1[[System.Text.RegularExpressions.RegexOptions, System]]
    03e0411c   
    2      
    96 System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.UriParser, System]]
    79ae9154   
    1     
    100 System.Runtime.Serialization.Formatters.Binary.__BinaryWriter
    79ae6af8   
    5     
    100 System.Security.PermissionToken
    79ad7848   
    1     
    100 System.Diagnostics.Tracing.FrameworkEventSource
    04029fd0   
    1     
    100 System.Diagnostics.FileVersionInfo
    049d5984   
    1     
    104 System.Windows.Forms.Application+MarshalingControl
    79ae90dc   
    1     
    108 System.Runtime.Serialization.Formatters.Binary.ObjectWriter
    5fb969ac   
    9     
    108 System.Configuration.ConfigurationPropertyCollection
    79ae26bc   
    1     
    112 System.AppDomain
    5fb96bb8   
    4     
    112 System.Configuration.StreamInfo
    0403c55c   
    4     
    112 System.Text.RegularExpressions.RegexFCD
    04028518   
    4     
    112 System.Collections.Specialized.ListDictionary
    04025bec   
    7     
    112 System.Collections.Specialized.NameObjectCollectionBase+NameObjectEntry
    79ae2d3c   
    3     
    120 System.Security.Policy.Evidence
    797183c0   
    5     
    120 System.Collections.Generic.List`1[[System.Type, mscorlib]]
    049d7190   
    6     
    120 System.Windows.Forms.Control+ControlCollection
    04059890   
    2     
    120 System.Diagnostics.TraceSection
    040593d4   
    2     
    120 System.Diagnostics.AssertSection
    79aed4a4   
    4     
    128 System.Text.UTF8Encoding+UTF8Encoder
    79adec44   
    8     
    128 System.Runtime.InteropServices.HandleRef
    79adb030   
    8     
    128 System.Security.Permissions.UIPermission
    049d54a4   
    8     
    128 System.Windows.Forms.PropertyStore+SizeWrapper
    049d4ecc   
    8     
    128 System.Windows.Forms.PropertyStore
    0403c5cc   
    8     
    128 System.Text.RegularExpressions.RegexPrefix
    0403c594   
    8     
    128 System.Text.RegularExpressions.RegexFC
    0402c194   
    8     
    128 Microsoft.Win32.SystemEvents+SystemEventInvokeInfo
    0402aab4   
    4     
    128 Microsoft.Win32.UserPreferenceChangingEventHandler
    79ad0adc   
    3     
    132 System.Reflection.RtFieldInfo
    77eb82ac   
    3     
    132 System.Drawing.Font
    049d5618   
    1     
    132 System.Windows.Forms.Application+ThreadContext
    005ba0e4   
    2     
    136 CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper
    Regards,
    Anil

Maybe you are looking for

  • How can I download Acrobat X Professional?

    I have a license to Adobe Acrobat X Professional but my computer crashed and I need to download.  Any help to a link for that download would be appreciated.   Previously, a person asked the same question on this forum and was directed to the followin

  • Dbms_job.submit error reporting

    Jobs are rerun - up to 16 tries, I understand - once submitted using dbms_job.submit. I can see the failures incrementing in the FAILURES columns of dba_jobs. What would be a suitable step to determine the cause of the job's failure, such as determin

  • Oracle Report Font problem when run report from oracle EBS R12

    Dear All I have developed one Report in ORACLE REPORT BUILDER in windows environment. I see the output of that report, its ok, I deployed it on the EBS R12 which is on Linux environment, when i see the output, its fonts totally change and due to chan

  • Working with an Audio File in Audition which has Multiple Cuts in Premiere

    Hello, I am quite new to Audition and am trying to apply noise reduction to tracks from Premiere... As I do not want to edit the original audio files and I do not know of a less painstaking method, I have been creating copies of the original audio fi

  • ITunes Match supports up to 10 devices. I can only have 5!

    It clearly says on the apple website "iTunes Match supports up to 10 devices - including your computer, iPhone, iPod touch, iPad and Apple TV." I have iTunes Match on my iphone, ipad, two computers and my Apple TV and it won't let me add any more dev