Crystal Report 2008 SP2 Dynamic image file

ASP.NET2008 C# +Crystal Report 2008 SP2 
製作動態顯示圖片的報表
資料庫是SQL2005 內存圖檔的路徑
使用DataSet+Report Document的方式產生報表資料
動態圖片是利用工是產生的
現在發現以下問題,其他固定顯示的圖片正常
1.未安裝SP1 &SP2
  (1)在VS下建置檔案:圖片正常顯示,且有錯誤訊息
  (2)部署後直接開啟網頁,無法顯示動態產生的圖片
  (3)錯誤訊息如下:
  網頁錯誤詳細資料
  使用者代理程式: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.4; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
    時間戳記: Mon, 1 Feb 2010 08:22:08 UTC
    訊息: 無法判定字串常數的結尾
  行: 23
    字元: 19
    程式碼: 0
    URI: http://192.168.1.89/aspnet_client/system_web/2_0_50727/crystalreportviewers12/js/dhtmllib/language/zh_TW/labels.js
  2.安裝SP1 &SP2 後
  (1)在VS下建置檔案:圖片正常顯示,且有錯誤訊息
  (2)部署後直接開啟網頁,無法顯示動態產生的圖片,且有錯誤訊息(同2(1))
    (3)錯誤訊息如下:
網頁錯誤詳細資料
使用者代理程式: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.4; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
時間戳記: Wed, 3 Feb 2010 00:45:39 UTC
訊息: 無法判定字串常數的結尾
行: 129
字元: 19
程式碼: 0
URI: http://192.168.1.89/aspnet_client/system_web/2_0_50727/crystalreportviewers12/allStrings_zh_TW.js

Hi Florian,
I'm having the same problem, have you by any chance found a solution?
Gajus.

Similar Messages

  • Crystal Reports 2008 and Dynamic Images

    Hello,
    I have a windows .net application that uses a listing of items in a grid.  The user selects an item then clicks the print button and that brings up a report viewer form and passes the photograph location in a parameter to the report document being loaded.
    The first time that this report is printed, the image for the selected item is printed correctly.  The next time the report is printed, the default image used to create the graphic object on the report is printed.
    In addition if a user double clicks on the listing of items, a detail form is displayed.  When the same report is printed from this screen, the default image used to create the graphic object on the report is printed.
    This is happening in multiple .net windows applications.
    Can anyone please give me an idea as to what may be causing this.
    I am using Crystal Reports 2008 with Service Pack 2 installed.
    Thanks

    The following is the code in the Report Viewer form that contains the Crystal Report Viewer Control.
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Imports CrystalDecisions.Windows.Forms
    Imports System.IO
    Public Class RptViewer
        Inherits System.Windows.Forms.Form
        Dim MyReport As CrystalDecisions.CrystalReports.Engine.ReportDocument
    #Region " Windows Form Designer generated code "
        Public Sub New()
            MyBase.New()
            'This call is required by the Windows Form Designer.
            InitializeComponent()
            'Add any initialization after the InitializeComponent() call
        End Sub
        'Form overrides dispose to clean up the component list.
        Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
            If disposing Then
                If Not (components Is Nothing) Then
                    components.Dispose()
                End If
            End If
            MyBase.Dispose(disposing)
        End Sub
        Friend WithEvents CrystalReportViewer1 As CrystalDecisions.Windows.Forms.CrystalReportViewer
        'Required by the Windows Form Designer
        Private components As System.ComponentModel.IContainer
        'NOTE: The following procedure is required by the Windows Form Designer
        'It can be modified using the Windows Form Designer. 
        'Do not modify it using the code editor.
        <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
            Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(RptViewer))
            Me.CrystalReportViewer1 = New CrystalDecisions.Windows.Forms.CrystalReportViewer
            Me.SuspendLayout()
            'CrystalReportViewer1
            Me.CrystalReportViewer1.ActiveViewIndex = -1
            Me.CrystalReportViewer1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
            Me.CrystalReportViewer1.Dock = System.Windows.Forms.DockStyle.Fill
            Me.CrystalReportViewer1.Location = New System.Drawing.Point(0, 0)
            Me.CrystalReportViewer1.Name = "CrystalReportViewer1"
            Me.CrystalReportViewer1.Size = New System.Drawing.Size(656, 481)
            Me.CrystalReportViewer1.TabIndex = 0
            Me.CrystalReportViewer1.ToolPanelView = CrystalDecisions.Windows.Forms.ToolPanelViewType.None
            'RptViewer
            Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
            Me.ClientSize = New System.Drawing.Size(656, 481)
            Me.Controls.Add(Me.CrystalReportViewer1)
            Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
            Me.Name = "RptViewer"
            Me.Text = "Report Viewer"
            Me.WindowState = System.Windows.Forms.FormWindowState.Maximized
            Me.ResumeLayout(False)
        End Sub
    #End Region
        Private Sub RptViewer_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
            Try
                Dim myConnectionInfo As ConnectionInfo = New ConnectionInfo()
                myConnectionInfo.ServerName = MyServer (Name of SQL Server)
                myConnectionInfo.DatabaseName = MySqlDb (Name of Database)
                myConnectionInfo.UserID = MyUid (Userid for SQL Database)
                myConnectionInfo.Password = MyPwd (Password for SQL Database)
                MyReport = New CrystalDecisions.CrystalReports.Engine.ReportDocument
                MyReport.Load(Path.GetFullPath(".") & "\" & MyReportFile)
                MyReport.SummaryInfo.ReportTitle = MyReportTitle  (Title passed to the report)
                MyReport.SummaryInfo.ReportComments = MyReportComments   (Comments passed to the report)
                SetDBLogonForReport(myConnectionInfo, MyReport)
              MyReport.SetParameterValue("MySequence", MyReportKey)  (Parameter passed to select single record in table)
               MyReport.SetParameterValue("MyPhotoLocation", sPhotoLocation)  (Physical Location of Photograph \\Server\Photos\)
                CrystalReportViewer1.ReportSource = MyReport
                'handle any exceptions
            Catch ex As Exception
                MessageBox.Show(ex.Message, "Report could not be created", MessageBoxButtons.OK)
            End Try
        End Sub
        Private Sub SetDBLogonForReport(ByVal myConnectionInfo As ConnectionInfo, ByVal myReportDocument As ReportDocument)
            Dim myTables As Tables = myReportDocument.Database.Tables
            Dim myTable As CrystalDecisions.CrystalReports.Engine.Table
            For Each myTable In myTables
                Dim myTableLogonInfo As TableLogOnInfo = myTable.LogOnInfo
                myTableLogonInfo.ConnectionInfo = myConnectionInfo
                myTable.ApplyLogOnInfo(myTableLogonInfo)
            Next
        End Sub
    End Class
    In the Crystal Report the Graphic Location formula field takes the {?MyPhotoLocation} + {Table.Photo} field to display the picture.  I have placed the parameter and the photo field on the report and the correct data is in the fields.
    This is the exact same form being opened and that displays correctly from the listing screen.
    Joel
    Edited by: JYaeger on Aug 8, 2009 2:56 AM

  • How to overcome the Memory leakage issue in crystal report 2008 SP2 setup.

    I have developed the small windows based application tool with help of  Visual studio 2008 for identify the memory consumption of crystal report object. It helps to load the crystal report objects in the memory and then released the object from the memory. The tool simply does the u201CLoading and Unloadingu201D the objects in the memory.
    The tool will be started once u201CTest_MemoryConsumption.Exeu201D executed. The u201CTest_MemoryConsumption.Exeu201D consumes u201C9768 KBu201D memory before load the crystal report object in memory. It means, 9768 KB is normal memory consumption for run the tool.
    Crystal report object initiated by the tool and object help to load the report in memory once the tool initiated the crystal report object. Now u201CTest_MemoryConsumption.Exeu201D consumes u201C34980 KBu201D memory during the crystal report object creation and report load process. The actual memory consumption of crystal report object is 34980u20139768=u201C25212u201DKBu201D. 
    The memory consumption u201C34980 KBu201D will be continued till the end of the process. The memory consumption will be reduced to u201C34652 KBu201D from u201C34980 KBu201D once report load process completed. It means, u201C328 KBu201D memory only released from the memory consumption. Tool enables the Release command for the crystal report object. But crystal report object does not respond to the command and will not release his memory consumption.
    The memory consumption u201C34652 KBu201D will be stayed in the memory once job ends.  If i again initiate the crystal report object then it crystal report object start to consume the memory from 34652 KB.
    Database objects and crystal report objects are properly used in the tool. The object release commands properly  communicated to crystal report setup. But the u201CCrystal report service pack 2u201D setup unable to respond the commands which has enabled from .Net Tool.  Crystal report objects are properly initiated and disposed in the tool. But the crystal report unable to release from the server.
    The memory consumption will be reduced once the server restarted or kill the application.
    Crystal report 2008 and crystal report 2008 SP2 setup available in the server.
    Microsoft .Net Framework 2.0 SP2, Microsoft .Net Framework 3.0 SP2 and Microsoft .Net Framework 3.5 SP1 are available in the server,
    Could you please suggesst how to avoid the memory consumption keep increasing and  how to release the memory consumption  once the crystal object disposed???

    Hi Don..
    My case is different one. I hope, the problem with Run time Installation setup file (Crystal report 2008 Serivce Pack2 installer) which we installed in the server.
    Let me explain with Live scenario which our client faced in crystal report 2008 Service pack2 Installer.
    Our client is using a application to help to print their reports. The application is developed with Windows service.
    Windows service keep on running in the server. Windows service executes the client 's crystal reports( Labels Report, Stock  report) which designed for clients need and the reports will be printed from printer. 
    10 Same type report (Label Report) will be printed in 1 minute. Reports are not printing during non business hours. But the windows service keep on running.  Memory cosumption of application will be 160 MB in business hours.
    For Example, On Monday the application memory consumption starts with 160 MB. The Memory consumption will be reached 165 MB  in peak business hours. Then the memory will be ended in163 MB in the End of Monday. It means, The memory consumption will be in 163 MB during the non business hours. Reports will not be printed in non business hours.
    On Tuesday, the application memory consumption starts with 163 MB and it will be reached 168 MB during the peak hours. The Memory consumption will be ended in 165 MB in the end of Tuesday.  The same process contiues till friday. End of friday, the memory consumption of the application will be ended with 170 MB.
    Application Memory Consumption slowly increasing in the server. In 5 days, Memory consumption reached Threshold value (170 MB) of the server. Application gets hanged up once the memory consumption reached 170 MB. We got the error messages as "Attempted to read write protected memory " / "Not Enough memory for process".  If we restart server / If we restart the service then memory consumption of application get reduced to 160 MB.
    From the above scenario, We came know that the either the problem with Application object or the problem crystal report object. In the application, We have checked dispose methods of application objects completly. I am sure that  application objects are properly disposed in the application. I hope the problem not with application objects. The problem with Crystal report objects.
    Application properly communicates the dispose methods to crystal report objects. Crystal report objects are not released from
    the memory.
    Crystal report 2008 Serive Pack 2 setup installed in the server. 
    As you said, If Crystal report runtime is not released from memory then memory consumption keep increase???  In service oriented architecture application, how to unload the crystal report runtime??
    Do you any fix for this kind of issue??
    Willl Crystal report 2008 service pack 3 help on this issue??

  • Crystal Report 2008 SP2 & InfoView: Custom XML Export doesnt work

    Hi,
    I have created a Crystal Report .rpt and want to use the custom xml export function to output a custom xml file. For that, I created a custom transformation file (xsl) and imported it into the .rpt . On the client machine, if I open the .rpt with Crystal Reports 2008 SP2, and select to export it using the custom xml output, all runs fine. (under SP1, only half the file was created...)
    If I upload the .rpt file to Infoview (server-side: BO Enterprise 3.1, SP2 as well) and schedule it, I can select xml, and then my custom xml as output format, but I am getting the error message u201EUngültige Exportoptionen" (="invalid export options"), in the instance history. No output file is created. I use file system as destination. Other output formats like .pdf and .rpt work fine and files are created.
    Ideas:
    -Are there any more settings needed on the server (e.g.CMC - Crystal Server Jobs, other Processes, ...) so I can schedule the report and successfully create the custom xml format file as output?
    -Do I need to upgrade to a specific SP or FP on server-side so everything runs smooth?
    Thanks for your help!

    Hi Florian,
    I'm having the same problem, have you by any chance found a solution?
    Gajus.

  • Crystal Reports 2008 SP2 - Fix Pack 2.1 Readme

    Hi,
    Where can I find a readme of the Crystal Reports 2008 SP2 - Fix Pack 2.1 with the list of fixed issues?
    Specifically does this fix the issue of dates when using .NET datasets and ADO recordsets (ttx files)?
    Regards
    Craig

    Is this not considered a critical breaking change? I think 6+ months is a long time to wait especially given we had to wait for SP2 in the first place for other fixes. Now we find we cant go to SP2.
    Is there anyway to get this esculated?
    What if SP3 hs another breaking change?
    Hopefully your will locate release notes, why is it that SAP dont appear to make these readily available for new serice packs and fix packs? We seem to go through this everytime?
    Craig

  • Crystal Reports 2008 SP2 - Fix Pack 2.1

    I see that Crystal Reports 2008 SP2 - Fix Pack 2.1 has been posted as of 10/26/09.  Anybody know what's in it?  I didn't see a Read Me.  Also, when you download and start to install this, it reports itself as a a Fix Pack for Version 1, but the version on things like CRViewer.dll show a version of 12.2.1.412 and a build date of 2009/10/14, which leads me to believe it really is for SP2.

    Moved to Legacy Development forum.
    We typically release the merge modules at the same time but sometimes they are delayed getting to our download site.
    Go to: SAP Crystal Solutions Downloads and click the Crystal Reports... link in the middle of the page and then select the correct versions and you'll find all of the dowloadables.
    If they are not there then let me know and I'll follow up with the guys who publish the files.
    Thank you
    Don

  • Crystal Reports 2008 SP2 Install Error

    When I try to install Crystal Reports 2008 SP2 I receive the following error...
    The feature you are trying to use is on a CD-ROM or other removable disk that is not available.
    Insert the 'Crystal Reports 2008 SP1' disk and click OK.
    SP1 was installed via the upgrade utility that launches with the software.  I found the package folder in C:\Documents and Settings\%username%\Local Settings\Temp but it did not contain the MSI SP2 is looking for.
    I've tried installing SP2 by both letting the update utility attempt to automatically install it and by just downloading it from the update utility and running the installation manually.
    Anyone experience this issue?
    -Chris
    Edited by: chris.murphy on Oct 20, 2009 10:18 PM

    Hi Chris,
    This is not a support site but a public place for all users to help each other. If you would like to talk to a support Engineer then please purchase a case.
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551
    Try downloading SP1 and installing it from your local hard driver and then install SP2. I'll mention this issue to the install team and see what they say about your issue.
    Thank you
    Don

  • No Hyperlink in PDF after export from Crystal Reports 2008 SP2

    When I export a report from Crystal Reports 2008 Developer (as well as from the runtime) SP2 to PDF the Hyperlink to a file on hard disk is missing.

    Hi,
    Go through this LInk
    Re: No hyperlinks after exporting to pdf
    Regards,
    Salah

  • Crystal Reports 2008 Crashes when opening File/Page Setup

    Post Author: jrm2byu
    CA Forum: General
    I am running Crystal Reports 2008 full version on Windows Vista. Every time I click on File/Page Setup, or File/Print the program will crash. There are no updates available for 2008. I also have Crystal Reports 8.5 and 10 installed on the same computer. Any ideas what might be causing this crash?

    Post Author: Ray Norkus
    CA Forum: General
    I've got the same issue as well. Does anyone have a solution?
    A quick printing workaround was to export to a pdf and then print but now I actually need to modify my page dimensions.
    Ray

  • Crystal Reports 2008 sp2 PrinterDuplex problem

    All,
    I'm working on a .NET 3.5 application (upgrade from 2.0) with Crystal Reports in it.
    Since we just upgraded the code from 2.0 to 3.5, I thought it would be intresting to also upgrade from Crystal Reports 2005 to Crystal Reports 2008.
    This transition worked flawlessly, except for 1 thing which I can not wrap my head around: I am unable to change the PrinterDuplex in the report.PrinterSettings since the upgrade !!
    report.PrintOptions.PrinterDuplex = CrystalDecisions.Shared.PrinterDuplex.Horizontal; // does not work anymore
    Message: COMException: {"Invalid index. (Exception from HRESULT: 0x8002000B (DISP_E_BADINDEX))"}
    Source: "CrystalDecisions.ReportAppServer.Controllers"
    Stacktrace: "   at CrystalDecisions.ReportAppServer.Controllers.PrintOutputControllerClass.ModifyPrintOptions
    (PrintOptions newVal)\r\n   at CrystalDecisions.CrystalReports.Engine.PrintOptions.set_PrinterDuplex
    (PrinterDuplex value)\r\n   at Gui.Reporting.ReportPrinter.PrintOnly (ReportInfo info, IList`1 paramValues, Int32 nCopies) in C:
    data\ \tcm_1.0
    Generation
    TCM
    src
    Gui
    Reporting
    ReportPrinter.cs:line 91"
    Anybody here who had the same problem or knows where I could find an answer or what I'm doing wrong ?
    cheers and thanks in advance,
    Andy

    Just did a quick test on it. Works for me fine. Using CR 2008 SP 2.
    If you do not have SP 2, it is available from here:
    https://smpdl.sap-ag.de/~sapidp/012002523100009038092009E/cr2008win_sp2.exe
    Ludek

  • Crystal Reports XII and Dynamic Images

    From an ASP.NET 2.0 web page I am executing a Crystal Reports that creates a photo album(actually a student directory) of from several dozen images to about 700.  The images are pkulled from a file system directory.
    The problem I am having is that frequently, not all the images render and I get my default "No Photo" original image I used whe n designing the report.  This is not consistent and there appears to be no pattern to the behaviour. 
    example:
    This morning I ran the entire directory exported to pDF of 700 photos and it worked fine.  Turn around, and run for maybe 150 records and it worked fine.  Ran again for 300 images and the first few pages had photos and then there were several pages with missing images.
    This is not a PDF export issue, because it is the same for the ReportViewer control, except tha tthere it will resolve itslef if I page forward and then back to the page again.
    I have adjusted the Crystal ImageCleaner settings, but have not achieved success with anything like acceptable results.
    These are my current settings:
              <add key="CrystalImageCleaner-AutoStart" value="true"/>
              <add key="CrystalImageCleaner-Sleep" value="1800000"/>
              <add key="CrystalImageCleaner-Age" value="0"/>
    The only thing I am really doing with the photo path is replacing part of the beginning of the path with the web server file system directory path in the Crystal Report:
    replace({MedStudentDirectoryList;1.PhotoPath}, {@SidPhotoDirectory}, {@OsacPhotoDirectory});
    This is not a logic issue, because a specific photo may appear in one execution of the report and then not appear in another execution.
    This appears to be a serious bug in Crystal Reports when running from the web.
    It also is driving up the CPU to about 50%.  I understand why this would be resource intensive, but 50% seems high.

    What version of Crystal Reports are you using?
    Have you applied any CR Service Packs?
    Ludek

  • Crystal Reports 2008 SP2 Installation Error

    Howdy Folks...
    I have been trying to install the SP2 for Crystal Reports.
    I get the following error...
    "The installaion source for this product is not available.  Verify that the source exists and that you can access it."
    Running the downloaded file, unpacks the contents, starts the installer, then the error message is displayed.
    System is with Windows Vista SP2
    Your help and advice is needed...
    Thanks,
    Jim

    Yes, mapping the network drive on the install PC works, technically.  Unfortunately, it doesn't resolve my core problem for two reasons.
    1.  I'm trying to make the install procedure as touchless as possible for an install base of potentially hundreds of users.  Having them all map a network drive would defeat the purpose.
    2.  I oversimplified the explanation of my situation to make the question easier to ask.  We actually have a home-grown, web-based client software distribution tool from which I'm trying to setup the installation.  The network drive, and generally all details of the installation are transparent to the installer, so that's another strike against mapping the network drive.
    Here's the command line script (nothing fancy) and the code of the supplemental .ini file that I'm using.  (This assumes that the self-extracting Crystal SP2 file has already been extracted and that I'm working directly with the setup.exe, setup.ini, and package files.)
    And to reiterate, this scripting procedure has worked like a charm for Xcelsius SP3 and Crystal SP1.  It just falls flat on its face for Crystal SP2
    Batch Script:
    setup.exe -r Crystal2008SP2.ini
    Crystal2008SP2.ini:
    [OTHER]
    QUIET=/qb+
    [INSTALL]
    CLIENTLANGUAGE="EN"
    DISABLEWEBUPDATE="1"
    ENABLELOGFILE="1"
    INSTALLDIR="C:\Program Files\Business Objects\"
    REINSTALL="ALL"
    [FEATURES]
    REMOVE=""
    ADDLOCAL=""
    ADDSOURCE=""
    ADVERTISE=""
    Thanks,
    Josh
    Edited by: Josh Crawford on Jan 20, 2010 8:44 AM

  • COM error in SAP toolbar, Crystal Reports 2008 SP2 FP2.1

    Hi,
    Error: COM execption caught in CExtToolBar::GenerateNewTempalte().HR = 0x80004005, ::InitOpenDialog().HR = 0x800004005; ::InitializeGlobalData(). HR = 0x03edafe7
    Unfortunately the error hasn't been fixed for us with FP 2.1 as it was with Sebastian.
    I have GUI 7.10 (7100.2.7.10348 Build 967944 Patch Level 14), Explorer 3.x and 7.0 installed.
    We are on SAP Integration Kit SP 2 FP2.1 and CR SP2 FP2.1
    I can connect to SAP using the MDX drivers etc, but get the same COM execption caught using the SAP toolbar.
    We want to use SAP BW variables as CR parameters in our report and the only way I'm understand from Ingo's previous posts to get a dynamic list of values from a SAP variable is to create the report via the CR SAP toolbar and save it to Infoview.
    thanks
    Michael

    looks identical to your previous item.
    Ingo

  • How is the best way to install the latest version of Crystal Reports 2008

    I have been downloading for hours all the service packs, hot fixes, fix packs  and chasing my tail for way too long on this.
    I keep getting errors about a file being out of sequence.... I assume there is a very loooooong list of fixpacks that need to be applied!!!    This is such a nightmare.
    Is there a simple way to just install the latest version of 2008 Crystal Reports?
    If I have to follow a long sequence of updates, is it written down anywhere?
    The reason for this in the firstplace is because I moved to Visual Studio 2010  with .Net 4.0 framework and now none of my crystal reports work.
    I am using the full version of Crystal Reports 2008 installation, not the one built into Visual Studio
    HELP!!!!!!

    When I try installing SP2 it starts the update and just locks up... no errors... just sits there.  I let it sit for about an hour.
    Is it compatible with Windows 7 ?
    When I tried installing a fixpack, I kept getting errors that a file was out of sequence.   I will try uninstalling all of Crystal and just reinstall in this order:
    1. Crystal Reports 2008 from CD
    2. Install Crystal Reports 2008 SP2  
    3. Install FixPack 2.6
    This is what I tried the first time and got all the errors, but I will try it again...   is this correct?  
    (I don't need to install SP0 or SP1 or any other Fixpacks.... Correct?)

  • Error exporting to PDF from Crystal Reports 2008

    Hi,
    We are getting following error while exporting Crystal report to the PDF and preview in IE:
    Description: Failed to export to a pdf file -- Selected exporter does not support one of the features used in this report. MyReport {DCA37817-1414-45A7-8DF9-75503B8CD0FE}.rpt
    This report having chart object as subreport, however export to Excel works fine and we could see chart fine in Excel. Any other reports without charts are exporting fine to the PDF format only this one having issue.
    Report developed with Crystal Reports 2008/SP2, server we are running this report having CRRuntime_12_0.msm merge file installed successfully. We can't install 12_2 or 12_3 downloaded from your site because of errors we are getting while setup with these merge files somehow.
    Server configuration: Windows 2008 RC2 64bit, .NET framework 3.5, project executing report compiled as x86 ASP.NET project.
    Thanks for help!
    Leonid Shprekher
    Bessemer Trust

    Actually, the question boils down to; does the framework support the fonts?
    I believe that my question re. this working in the designer was valid. The designer does not use the framework, so if it works there, it is either a framework issue or a runtime print engine issue.
    I believe if you use the code below, it will list fonts available to the framework:
    foreach(FontFamily ff in FontFamily.Families)
    System.Diagnostics.Debug.WriteLine(ff.Name);
    For more information see kbase [1198306 - Crystal Report displaying incorrect font in Microsoft Visual Studio .NET|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_dev/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333133393338333333303336%7D.do]
    Ludek

Maybe you are looking for

  • What do you think?

    There seems to be a great number of complaints with the iPhone carrier AT&T. Mainly its lack of service and inability to keep up with the new iPhone users activation procedure. Other complaints exist as well they I did not mention. I understand some

  • Default size of Cover Flow

    Is it possible to set the default size of the Cover Flow window? And keep the same size when you scale the entire window?

  • Missing Minimize Button (Greyed out, anyway)

    Lately, I've noticed that many times my mail application's yellow "minimize" button is greyed out. The way I can minimize the application is with the apple=H (Hide) command. Then, later on, when I bring the application back on screen, there is the ye

  • Power Saver Problem

    Recently when I start my computer, I get a message fatal error power saver.  Any idea how I fix that?   Thanks

  • System should take automatically to next line after scanning serial number

    When in SAP serial selection screen i scan serial number(barcode) with scanner system should take me to next line after population of serial number in one line is completed. In delivery in select serial numbers window against serial number field in m