HTML40 - Invalid Export Options

We have moved our .net application from Crystal 10 to Crystal 11.5. The version of the dlls is now 11.5.3700.0.
We now get an error 'invalid export option'.
Our reports export to HTML40 format.
If I change to HTML32 it works ok.
Any help would be much appreciated.

Problem does not occur in the designer, only at run-time.
We are using c# and .net 2.0.
Stack trace is below, seems to be error in CrystalDecisions.CrystalReports.Engine.HTMLExporter.GetPage
at CrystalDecisions.CrystalReports.Engine.EngineExceptionUtils.DoThrowException(String message, EngineExceptionErrorID id)
   at CrystalDecisions.CrystalReports.Engine.ExceptionThrower.ThrowEngineException(String messageID, EngineExceptionErrorID id)
   at CrystalDecisions.CrystalReports.Engine.HTMLExporter.GetPage(Boolean bSeparatePages, Boolean bDHTML, Int32 startPage, Int32 endPage)
   at CrystalDecisions.CrystalReports.Engine.HTMLExporter.Export()
   at CrystalDecisions.CrystalReports.Engine.FormatEngine.Export(ExportRequestContext reqContext)
   at CrystalDecisions.CrystalReports.Engine.ReportDocument.Export(ExportOptions options)
   at CCS.Service.ReportServer.ReportServer.<>c__DisplayClassd.<generateCrystalReport>b__5() in D:\CSS\CCSEnterprise\Architecture\CCSServiceReportServer\ReportServer.cs:line 1391
   at CCS.Service.ReportServer.ReportServer.executeLoggedCode(ExecuteLoggedCode executionDelegate, String activity, ReportQueue context) in D:\CSS\CCSEnterprise\Architecture\CCSServiceReportServer\ReportServer.cs:line 1168
Our code is below, If we use ExportFormatType.HTML32 it works ok...........
ExportOptions html40ExportOptions = new ExportOptions();
html40ExportOptions.ExportFormatType = ExportFormatType.HTML40;
//html40ExportOptions.ExportFormatType = ExportFormatType.HTML32;
// Destination options
html40ExportOptions.ExportDestinationType = ExportDestinationType.DiskFile;                           
CrystalDecisions.Shared.DiskFileDestinationOptions html40DestinationOptions =
ExportOptions.CreateDiskFileDestinationOptions();
html40DestinationOptions.DiskFileName = exportedReportName;
html40ExportOptions.ExportDestinationOptions = html40DestinationOptions;
// Format options
HTMLFormatOptions html40FormatOptions = new HTMLFormatOptions();                           
html40FormatOptions.HTMLBaseFolderName = Path.GetDirectoryName(exportedReportName);
html40FormatOptions.HTMLFileName = Path.GetFileName(exportedReportName);
html40FormatOptions.HTMLEnableSeparatedPages = true;
html40FormatOptions.HTMLHasPageNavigator = true;
html40FormatOptions.FirstPageNumber = 1;
html40ExportOptions.ExportFormatOptions = html40FormatOptions;
// Export the report
theReport.Export(html40ExportOptions);
Edited by: john brister on Dec 4, 2008 3:45 PM

Similar Messages

  • Invalid Export Options error

    Post Author: Kit
    CA Forum: .NET
    Why would an export to html, which has for many months  performed correctly, suddenly start producing the "Invalid export options" error?Our application is a Microsoft Dynamics GP third party add-on, developed in Dexterity ( The MS Dynamics GP native development tool) and using a home-grown .NET component to export reports to HTML.In our scenario we have a production environment where three reports are produced each evening, exported to HTML, and then published via FTP. Crystal 10 is installed on the server. This has worked well for a long time but lately one or more of the three  reports have failed each time, with a "Invalid export options" error.The failure is not consistent -  for example one time the first two reports were successful, but the third failed, but the next time the first two both failed, whereas the third was succesful.Ou first thought was that the error could be caused by a bad report setup within the Dexterity side of the application, however we have investigated this possibility and debugged the application and can find no likely cause there.Here's the error;CrystalDecisions.CrystalReports.Engine.InvalidArgumentException: Invalid export options.   at CrystalDecisions.CrystalReports.Engine.EngineExceptionUtils.DoThrowException(String message, EngineExceptionErrorID id)   at CrystalDecisions.CrystalReports.Engine.ExceptionThrower.ThrowEngineException(String messageID, EngineExceptionErrorID id)   at CrystalDecisions.CrystalReports.Engine.HTMLExporter.GetPage(Boolean bSeparatePages, Boolean bDHTML, Int32 startPage, Int32 endPage)   at CrystalDecisions.CrystalReports.Engine.HTMLExporter.Export()   at CrystalDecisions.CrystalReports.Engine.FormatEngine.Export(ExportRequestContext reqContext)   at CrystalDecisions.CrystalReports.Engine.ReportDocument.Export(ExportOptions options)   at KIT.Crystal.RunReport()" KIT.Crystal.RunReport is from our component, and contains the following code                    rptDoc = SetupRptDoc();                    // Set the options for saving the exported file to disk                    destOpts = new DiskFileDestinationOptions();                    destOpts.DiskFileName = outputFilename;                    expOpts = new ExportOptions();                    expOpts.DestinationOptions = destOpts;                    // Set the exporting information                    expOpts.ExportDestinationType = ExportDestinationType.DiskFile;                    switch (exportFormat)                    {                        case ExportFormatEnum.CRS:                            expOpts.ExportFormatType = ExportFormatType.CrystalReport;                            break;                        case ExportFormatEnum.DOC:                            expOpts.ExportFormatType = ExportFormatType.WordForWindows;                            break;                        case ExportFormatEnum.HTML:                            htmlOpts = ExportOptions.CreateHTMLFormatOptions();                            htmlOpts.HTMLBaseFolderName = new FileInfo(_outputFilename).DirectoryName;                            htmlOpts.HTMLFileName = new FileInfo(_outputFilename).Name;                            htmlOpts.HTMLEnableSeparatedPages = false;                            htmlOpts.HTMLHasPageNavigator = false;                            expOpts.ExportFormatOptions = htmlOpts;                            expOpts.ExportFormatType = ExportFormatType.HTML40;                            break;                        case ExportFormatEnum.RTF:                            expOpts.ExportFormatType = ExportFormatType.RichText;                            break;                        case ExportFormatEnum.XLS:                            expOpts.ExportFormatType = ExportFormatType.Excel;                            break;                        case ExportFormatEnum.PDF:                        default:                            expOpts.ExportFormatType = ExportFormatType.PortableDocFormat;                            break;                    }                    //Export the report                    rptDoc.Export(expOpts);

    Post Author: Kit
    CA Forum: .NET
    Why would an export to html, which has for many months  performed correctly, suddenly start producing the "Invalid export options" error?Our application is a Microsoft Dynamics GP third party add-on, developed in Dexterity ( The MS Dynamics GP native development tool) and using a home-grown .NET component to export reports to HTML.In our scenario we have a production environment where three reports are produced each evening, exported to HTML, and then published via FTP. Crystal 10 is installed on the server. This has worked well for a long time but lately one or more of the three  reports have failed each time, with a "Invalid export options" error.The failure is not consistent -  for example one time the first two reports were successful, but the third failed, but the next time the first two both failed, whereas the third was succesful.Ou first thought was that the error could be caused by a bad report setup within the Dexterity side of the application, however we have investigated this possibility and debugged the application and can find no likely cause there.Here's the error;CrystalDecisions.CrystalReports.Engine.InvalidArgumentException: Invalid export options.   at CrystalDecisions.CrystalReports.Engine.EngineExceptionUtils.DoThrowException(String message, EngineExceptionErrorID id)   at CrystalDecisions.CrystalReports.Engine.ExceptionThrower.ThrowEngineException(String messageID, EngineExceptionErrorID id)   at CrystalDecisions.CrystalReports.Engine.HTMLExporter.GetPage(Boolean bSeparatePages, Boolean bDHTML, Int32 startPage, Int32 endPage)   at CrystalDecisions.CrystalReports.Engine.HTMLExporter.Export()   at CrystalDecisions.CrystalReports.Engine.FormatEngine.Export(ExportRequestContext reqContext)   at CrystalDecisions.CrystalReports.Engine.ReportDocument.Export(ExportOptions options)   at KIT.Crystal.RunReport()" KIT.Crystal.RunReport is from our component, and contains the following code                    rptDoc = SetupRptDoc();                    // Set the options for saving the exported file to disk                    destOpts = new DiskFileDestinationOptions();                    destOpts.DiskFileName = outputFilename;                    expOpts = new ExportOptions();                    expOpts.DestinationOptions = destOpts;                    // Set the exporting information                    expOpts.ExportDestinationType = ExportDestinationType.DiskFile;                    switch (exportFormat)                    {                        case ExportFormatEnum.CRS:                            expOpts.ExportFormatType = ExportFormatType.CrystalReport;                            break;                        case ExportFormatEnum.DOC:                            expOpts.ExportFormatType = ExportFormatType.WordForWindows;                            break;                        case ExportFormatEnum.HTML:                            htmlOpts = ExportOptions.CreateHTMLFormatOptions();                            htmlOpts.HTMLBaseFolderName = new FileInfo(_outputFilename).DirectoryName;                            htmlOpts.HTMLFileName = new FileInfo(_outputFilename).Name;                            htmlOpts.HTMLEnableSeparatedPages = false;                            htmlOpts.HTMLHasPageNavigator = false;                            expOpts.ExportFormatOptions = htmlOpts;                            expOpts.ExportFormatType = ExportFormatType.HTML40;                            break;                        case ExportFormatEnum.RTF:                            expOpts.ExportFormatType = ExportFormatType.RichText;                            break;                        case ExportFormatEnum.XLS:                            expOpts.ExportFormatType = ExportFormatType.Excel;                            break;                        case ExportFormatEnum.PDF:                        default:                            expOpts.ExportFormatType = ExportFormatType.PortableDocFormat;                            break;                    }                    //Export the report                    rptDoc.Export(expOpts);

  • Invalid Export Options RAS SDKs

    Hi All,
    As given in post Re: XML Export - Cannot select format CR2008 SP2 We are using RAS sdks and given sample code but still we are gettting same error i.e. Invalid Export Options.
    Is this also scheduled to be fixed in SP3.
    Thanks,
    Stanly

    Hi, Stanly;
    The RAS code given in that post should work. Which service pack level and version of Crystal Reports are you using?
    Can you show the code you are using?
    Regards,
    Jonathan

  • Using MAPI Outlook 2007 on Windows 7 Errors Invalid export options

    O.S : Windows 7
    Email Client: Outlook 2007
    Crystal Reports 2008 Dev Environment
    Use MAPI ExportDestinationType and invoke Export() returns Invalid export options
                     pRpt.ExportOptions.ExportDestinationOptions = MailOptions
                     pRpt.ExportOptions.ExportFormatOptions = CrystalDecisions.Shared.ExportOptions.CreatePdfFormatOptions()
                     pRpt.ExportOptions.ExportFormatType = CrystalDecisions.Shared.ExportFormatType.PortableDocFormat
                     pRpt.ExportOptions.ExportDestinationType = CrystalDecisions.Shared.ExportDestinationType.MicrosoftMail
                     pRpt.Export()
    Seems to be interface compatibility issue between Crystal Export API and Outlook 2007 MAPI API
    This thread explains more
    Windows 7 - Exporting to Mapi problem
    Edited by: Aumil Manzoor on Dec 16, 2009 1:24 AM

    Essentially you've posted the same issue twice. Once in this thread and once here;
    Windows 7 - Exporting to Mapi problem
    One post is good enough. Let's continue on the other thread and close this one.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • "Invalid Export Option" Crystal 2008 SP3, Windows 7, Outlook 2010 (32 bit)

    We have one client reporting that they get "Invalid Export Option" whenever they try to email a report.  We used the supplied code with VS 2008 to implement the ability to view, print, export, and email reports.  Our Windows 7 computers all work without issue, except for the one with 64 bit Outlook (which is a known issue), so I'm guessing this is security/SPAM protection at the client, but it doesn't affect any of their XP computers. 
    Any suggestions would be greatly appreciated

    Thank you for the info, much better.
    Have them download the trial version of CR 2008, they will have to do a Repair install of your app and CR runtime when they uninstall the trial version. Then see if they can export from the Designer.
    Or if you prefer they not have access to the designer then use ProcessMonitor and follow along as they try to export, look for access Denied entries. I assume all other export formats work? Most have a pop up also to see if it's a CR issue.
    There are few options for security settings in Outlook itself to not prompt but like you say it appears they are not even getting that far. Could be the pop up is behind your app, I've seen this happen before.
    I did a google search and found quite a few posts on this issue. You may want to search also to see if something will help your user to get around this issue.
    Possibly adding your app EXE to the trusted list in their Anti-virus software may help also. And if you haven't done so look in the various logs in their AV and Firewall and even Event Viewer to see if it captures and access denied errors.
    Thanks
    Don

  • Apex 3.1.2.00.02 creates invalid export file (that gives ORA-20001 error)

    Hi
    I want to let you know, that sometimes APEX 3.1.2.00.0 creates invalid export file.
    Older apex 3.0 created correct file.
    For example: our application has page button, where "Optional URL Redirect" is:
    Page: &APP_PAGE_ID.
    Request: FLOW_XMLP_OUTPUT_R11531800061044170_et
    If we export application into file f110.sql and try to import it to the same workspace on the same server, we get error:
    {color:#0000ff}ORA-20001: GET_BLOCK Error. ORA-20001: Execution of the statement was unsuccessful. ORA-06550: line 28, column 111: PLS-00103: Encountered the symbol "_" when expecting one of the following: ) , * &amp; | = - + &lt; / &gt; at in is mod remainder not rem =&gt; .. &lt;an exponent (**)&gt; &lt;&gt; or != or ~= &gt;= &lt;= &lt;&gt; and or like LIKE2_ LIKE4_ LIKEC_ as between from using || multiset member SUBMULTISET_ The symbol &a
    {color}In exported f110.sql file the invalid section is:
    {color:#0000ff}wwv_flow_api.create_page_branch(
    p_id=&gt;11762805016890347 + wwv_flow_api.g_id_offset,
    p_flow_id=&gt; wwv_flow.g_flow_id,
    p_flow_step_id=&gt; 4,
    p_branch_action=&gt; 'f?p=&APP_ID.:&APP_PAGE_ID.:&SESSION.:FLOW_XMLP_OUTPUT_R'||to_char({color}{color:#0000ff}{color:#ff0000}*10255206661122183_et*{color}+wwv_flow_api.g_id_offset)||':&DEBUG.:::',
    p_branch_point=&gt; 'AFTER_PROCESSING',
    p_branch_type=&gt; 'REDIRECT_URL',
    p_branch_when_button_id=&gt;11761415275883875+ wwv_flow_api.g_id_offset,
    p_branch_sequence=&gt; 10,
    p_branch_comment=&gt; 'Created 20-JUUNI-2008 12:05 by XXXX');{color}
    If we exported the same application in apex 3.0, this section was correct:
    {color:#0000ff}wwv_flow_api.create_page_branch(
    p_id=&gt;11762805016890347 + wwv_flow_api.g_id_offset,
    p_flow_id=&gt; wwv_flow.g_flow_id,
    p_flow_step_id=&gt; 4,
    p_branch_action=&gt; 'f?p=&APP_ID.:&APP_PAGE_ID.:&SESSION.:FLOW_XMLP_OUTPUT_R*10255206661122183_et*:&DEBUG.:::',
    p_branch_point=&gt; 'AFTER_PROCESSING',
    p_branch_type=&gt; 'REDIRECT_URL',
    p_branch_when_button_id=&gt;11761415275883875+ wwv_flow_api.g_id_offset,
    p_branch_sequence=&gt; 10,
    p_branch_comment=&gt; 'Created 20-JUUNI-2008 12:05 by XXXX');{color}
    Best Regards,
    T&otilde;nu

    Thanks for pointing that out. We'll fix it. It does appear though, that in 3.0, the offset would not be added to the number part of the request value, so if you installed the application as a different application ID or into a different workspace, the request would have failed.
    Scott

  • Problems in Limiting Export option in Web Analysis shortcut menu options

    Hi everyone,
    i'm trying to limit the shortcut menù option in Web Analysis studio following the instructions in the WA 9.3.1 user guide: "Limiting Web Analysis Studio Shortcut Menu Options" page 293. Exactly i would hyde the Export to some users (an user with Viewer and Expoler permissions).
    The problem is that the solution does not work.
    Resuming:
    First, I have created the WAMenu.xml file, with restrictions for the roles: Viewer and Explorer (using the same tags of the Sample XML File in the guide)
    Second, I have modified the WebAnalysis.properties file removing the # ahead this two lines:
    "WAStudioMenuControl= C:/Hyperion/Analyzer/conf/WAMenu.xml
    ModuleName=WebAnalysisStudio"
    and modified the path with the correct location of the XML file.
    At last, i have restart the services regarding Workspace and Web Analysis.
    But, it does not work. The user can still see the export options in the shortcut menu..I don't understand what is wrong..
    I really hope that someone can help me!!

    Hi Iain,
    thanks for answering.
    Unfortunately it doesn't restrict neither in the workspace nor in the WA studio.
    I made a lot of attempts, not only with export but also with other option, and there are no changes!!
    Do you remember if you made the same steps descripted above, or there is something that i did not make (or made wrong)??
    Cheers,
    Angelo

  • How to restrict 'Broadcast and Export' option of BW report through web.

    Helllo,
    Please anyone let me know, how NOT to give/allow "Broadcast and Export' option in BW report, when accessed through Web.
    Is there is any Auhtorization object which restrictes this option.

    Hi,
    Please check this, it may help you.
    http://help.sap.com/saphelp_nw70/helpdata/en/80/1a68b4e07211d2acb80000e829fbfe/frameset.htm
    Regards,
    Madhu

  • IR export options and embedded HTML

    Good day,
    Apex 3.2.1.00.12, 9.2.0.8 DB, on AIX 5.3.
    I have an IR where in I use html in the SQL that defines it to format certain columns such as the below
    "<div style=""overflow:auto;height:50px;"">column value here</div>"I then define the display type as ' Standard Report Column '.
    That obviously allows me to have some "formatting" power that the IR does not give by default.
    Problem is when I do the export to a CSV I get the html markup included as the value of the column.
    Is there a way I can keep my formatting desires and export without the html included in the value ?
    Also, can I export the whole result set to CSV, not just whatever I have pagination set to ?
    I do NOT have a print server.
    Thanks for your time,
    CLG

    What export option you used.
    I am using default export option and it exports all the records on report. Not current page.
    Furthermore for your requirment I ahve done lot of test regaring same thing. But I didnt find any solution. So what I did was create my own export function for those reports and then use that.
    Thanks
    * If this answer is helpfull or correct then please mark it and grant the points.

  • Invalid export DLL or export format" with Crystal Reports 2008 to Excel xls

    We are experiencing the same issue as reported in the sticky thread. I answered in that thread, but thought that I woudl open a new thread to keep track of this issue.  I can give you the responses to your questions you have requested in that thread:
    Server Operating System - MS Windows Server 2003 R2 Enterprise Edition SP2
    Version of the .NET Framework - MS .NET Framework 3.5 SP1
    How did you deploy? - Installed CR 2008 SP1 runtime with msi package
    If you deployed with CRRuntime_12_0_mlb.msi - what was the date of the file and its size? CRRuntime_12_1_mlb.msi dated Sept. 16, 2008 12:55:00 PM, size: 56,717,824 bytes
    What is the file version of crpe32.dll on your server? You'll find this in the C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86 directory - File was created 9/13/08 11:21AM, 9451KB File Version: 12.1.0.882
    How many libpng10.dll files are on your system? List all instances. - 1 instance is on the system located in C;\Program Files\Business Objects\Business Objects Enterprise 12.0\win32_x86 directory. It is dated 9/13/08 8:52:26AM 132KB version 1.0.30.1
    Any additional comments - We have tried to export to PDF and this works successfully. However, we can not export to xls or rft formats.
    CRXF_XLS.dll is 905KB 9/13/08 9:38AM Version 12.1.0.882
    CRXF_RTF.dll is 509KB 9/13/08 9:35AM Version 12.1.0.882
    We also have the CR XIR2 server runtime installed side by side on the server as we migrate from CR 2008 to CR XIR2 SP4 ( where this function does work currently).
    Please let me know if you need anything additional.
    Phil
    "Invalid export DLL or export format" with Crystal Reports 2008
    Posted: Sep 27, 2008 12:36 AM       E-mail this message      Reply 
    I've included this sticky because we are seeing many posts in this forum regarding the error Invalid export DLL or export format when exporting to Excel and RTF in .NET applications using the Crystal Reports 2008 .NET SDK.
    Issue
    Exporting a Crystal Report to Excel or RTF format
    .NET application using the Crystal Reports 2008 runtime (version 12.0)
    error Invalid export DLL or export format
    We've been doing some testing in-house and haven't reproduced this behavior. In order to figure this issue out we will need your help. If you are getting this error please reply to this post with the following information:
    Server Operating System
    Version of the .NET Framework
    How did you deploy?
    If you deployed with CRRuntime_12_0_mlb.msi - what was the date of the file and its size?
    What is the file version of crpe32.dll on your server? You'll find this in the C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86 directory
    How many libpng10.dll files are on your system? List all instances.
    Any additional comments
    What We Know
    The error invalid export DLL or export format may occur when exporting to Excel and RTF formats in .NET applications utilizing the Crystal Reports 2008 runtime (v 12.0)
    Other export formats like Adobe PDF, Crystal Reports, CSV all export with no error
    Some customers have resolved this by adding C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86 to their environment path variables
    This may have something to do with the file libpng10.dll. Both crxf_xls.dll and crxf_rtf.dll are dependent on it.
    Thanks in advance for your co-operation. We hope to figure out what is causing this issue soon.

    Hi,
    I am also having the same problem, except that I am not using Crystal Report 2008 runtime but the actual Crystal Report 2008 installation on Windows XP SP2 with VS Studio 2005 (VC++). MS .NET Framework 2.0.
    Cyrstal Report XIR2 was installed on the same machine but uninstalled before installing Crystal Report 2008.
    So only one instance of libpng10.dll and found in C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86
    Crpe32.dll        3/1/2008 version 12.0.0.683
    Crxf_xls.dll       3/1/2008 version 12.0.0.683
    Crxf_rtf.dll         3/1/2008 version 12.0.0.683
    crdb_oracle.dll  3/1/2008 version 12.0.0.683
    libpng10.dll       3/1/2008 version 1.0.30.0             122880 bytes
    There is no problem for exporting to pdf, html, word, csv, Crystal Report. If I create a testing report without any data from database, the testing report can then be exported also to rtf and xls.
    Oracle 11.1.0.6 is the DB for the reports.
    Adding C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86 to the path did not resolve my problem.
    Any idea to fix this issue?
    Thanks
    Kin H Chan

  • Export options in Voyager

    I created Voyager documents for my cubes. The tool is great in terms of its ability to report data from the multiple measures and dimensions. When it comes to Export options - The export to excel is pretty clean, but it doesn't carry the formatting to the exported file. This feature is something that our users really felt was missing. Can this feature be released as a patch or part of a service pack release? Also, the export doesn't carry the title of the report to excel or PDF (print to PDF - Data).
    Thanks in Advance!!
    Harish

    To confirm:  Column formatting like display -> Name:Caption ..  .. is not being exported to excel
    please refer to Note # 1345585
    this behaviour will be enhanced in XI3.0 Sp3 - due end 2009.
    regards,
    Henry

  • ReportViewer 2010:how to hide pdf in export option in subreports in reportviewer

    Hi,
    I am using ReportViewer 2010 and using code (posted below) to hide certain options from export, its working fine for parent report,  but when i am clicking on parent report to view child report, then export option in child report is showing all the
    items in export option which all are hided in parent report. So please help me out.
    private void DisableUnwantedExportFormats()
                FieldInfo info;
                foreach (RenderingExtension extension in rptviewerByBrandBySentimentAttribute.ServerReport.ListRenderingExtensions())
                    if (extension.Name != "PDF" && extension.Name != "ASPPT" && extension.Name != "ASPPTX" && extension.Name != "EXCEL" && extension.Name != "MHTML") // only PDF and Excel
    - remove the other options
                        info = extension.GetType().GetField("m_isVisible", BindingFlags.Instance | BindingFlags.NonPublic);
                        info.SetValue(extension, false);
                    if (extension.Name == "ASPPT") // change "Excel" name on the list to "Excel 97-2003 Workbook"
                        info = extension.GetType().GetField("m_localizedName", BindingFlags.Instance | BindingFlags.NonPublic);
                        if (info != null) info.SetValue(extension, "PowerPoint 2003");
                    if (extension.Name == "ASPPTX") // change "Excel" name on the list to "Excel 97-2003 Workbook"
                        info = extension.GetType().GetField("m_localizedName", BindingFlags.Instance | BindingFlags.NonPublic);
                        if (info != null) info.SetValue(extension, "PowerPoint 2007");
    neha

    Hi,
    Thank you for this article.
    I am using the localreport ReportViewer 2010 and other code examples weren't working.
    Apparently, the m_isVisible field was not available in earlier version of ReportViewer
                        info = extension.GetType().GetField("m_isVisible", BindingFlags.Instance | BindingFlags.NonPublic);                    info.SetValue(extension, false);
    Code that wasn't working:
                FieldInfo info = extension.GetType().GetField("m_serverExtension",            BindingFlags.NonPublic | BindingFlags.Instance);            if (info != null)            {                object actualExtension = info.GetValue(extension);                if (actualExtension != null)                {                    PropertyInfo propInfo = actualExtension.GetType().GetProperty("Visible");                    if (propInfo != null && propInfo.CanWrite)                    {                        propInfo.SetValue(actualExtension, false, null);                    }                }            }
    Thanks again, chupaul :)

  • How do I share a new project on imovie if the export option is greyed out and not an option?

    how do I share a new project on imovie if the export option is greyed out and not an option?

    nicoleking wrote:
    ... I heard that if you bring in your old iPhone, they will give you a new one with some kind of fee, but I don't know how that works.
    https://discussions.apple.com/message/22920500

  • Error: Invalid Export dll when exporting to Excel from VB,NET 2008

    Version: Crystal Report 2008
    Front End: Visual Basic 2008
    Hello,
    I am trying to export a report to Microsoft Excel [2003] when I get the error "Error in File_Temp......Invalid Export dll or export format".
    from the Windows Form Viewer.
    I have looked in C:\Program Files\Common Files\Business Objects\3.0\bin and found crxf_xls.dll and crxf_xls_res_en.dll, but am not sure if these dlls' are the error source.
    Do these dll files need to be reregistered? Re-installation hasn't worked.
    Thanks
    eburton

    Duplicate

  • Convert pdf to word doc-but don't have the export option.

    I want to convert a pdf (that I got from an email) into a Word doc so I can edit it the way I want to. However, for some reason now I don't have the 'Export' option in my File drop down list.
    Funny thing is, I've converted the document once already and have entirely forgotten how I did it obviously!
    I've made so many changes in my first conversion I want to start over.
    why don't I have the 'Export' option? Or ... when I do a 'save as' and chose 'word doc' it only does a copy - paste type save - where I can't make any changes. It's like it puts it into a text box or something.
    I have MSWord 2010.

    Hi Kelly,
    MsDennis1465 wrote:
    When I do the steps below, the Word doc that is saved is like a photo. I am unable to work with the document. Why does it do that? I have converted pdf’s before without that happening but I think I did it on a free 30-day trial of X Pro.
    This usually happens when you're dealing with a very poor quality scanned document that doesn't have enough data for the Acrobat OCR engine to actually process.
    As for Acrobat 6.0 Pro, I don't believe the Save as Word function was introduced until version 8.0, but it's been a few years and the memory of Acrobat 6 has faded a bit.
    -David

Maybe you are looking for

  • Home sharing with multiple Apple IDs

    Hi: Is it possible to enable homesharing, streaming to the apple TV from multiple computers each with a different Apple ID? How do I switch between each account (on the Apple TV)? Thanks, Erik

  • Lenovo E540 video problems on Windows 8.1

    Hi, I've just recently bought a Lenovo ThinkPad Edge E540 with the following configuration: - i7-4702MQ(2.2GHz) - 4GB RAM - 500GB 7200rpm HD - 15.6in 1920x1080 LCD - 2GB NVIDIA N14P-GV2 - CDRW/DVDRW - Intel 802.11bgn wireless - 1Gb Ethernet, UltraNav

  • VMI: Reduce Stock in transit - what is the right method?

    Hi Gurus, We are using APO/SCM  system to implement VMI functionality to replenish stock at customer location.  We need to build stock in transit at customer location after PGI happens in ECC.   Now, stock in transit is show up in 'Stock in transit'

  • Reverse action and onclick on commandButton.

    Hi, my question is about this: In jspx. <af:commandButton text="Report" blocking="false" action="#{myOwnBean.report_Action}" onclick="#{myOwnBean.chainWeb}"/> I want execute action first, and then onclick in second place. Are there some way to do thi

  • CTS+ integration with NWDI in NW 7.01

    Hi, all. I read in the release note that in NW 7.01, you can package NWDI activity and transport it using CTS+. For most of the afternoon, I was searching in vain for the procedure on help.sap.com, SDN and service.sap.com. The doc on help.sap.com in