Problem with Excel export

Hi!
I am trying to export data from datagrid to Excel. Export goes just fine, but the page I make the export from stops responding. I.E. pressing the export button again won't do anything. After reload (by pressing F5) page it works normally until the next export. I made a simple code example that demonstrates the problem:
    public class ExcelTesti : System.Web.UI.WebControls.WebParts.WebPart
        Button excelButton = new Button();
        public ExcelTesti()
            this.ExportMode = WebPartExportMode.All;
        protected override void Render(HtmlTextWriter writer)
            excelButton.RenderControl(writer);
        protected override void CreateChildControls()
            excelButton.Text = "To Excel";           
            this.Controls.Add(excelButton);      
            excelButton.Click += new EventHandler(m_button_Click);
        protected void m_button_Click(object sender, EventArgs e)
            this.Page.Response.Clear();
            this.Page.Response.AddHeader("content-disposition", "attachment;filename=PIexport.xls");
            this.Page.Response.Cache.SetCacheability(HttpCacheability.NoCache);
            this.Page.Response.ContentType = "application/vnd.ms-excel";
            Page.Response.BufferOutput = true;
            this.Page.Response.Buffer = true;
            EnableViewState = false;
            this.Page.Response.Charset = "";
            StringWriter strW = new StringWriter();
            HtmlTextWriter htmlw = new HtmlTextWriter(strW);
            htmlw.RenderBeginTag(HtmlTextWriterTag.Table);
            htmlw.RenderBeginTag("tr"); //Add a row
            htmlw.RenderBeginTag("td"); // Add a cell
            htmlw.Write("Test");
            htmlw.RenderEndTag(); //End of the cell tag
            htmlw.RenderEndTag(); //End of the row tag
            htmlw.RenderEndTag(); //End <Table>           
            this.Page.Response.Write(strW.ToString());
            Page.Response.Flush();
            Page.Response.End();
I found some threads with the same problem, but no solutions that helped me. For example
http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=1572942&SiteID=17
http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=1369245&SiteID=17
There must be some way to do this. I have seen web parts that do this right.
Can anyone help me?
Antti

Hi,
         I am facing with the same issue. I think it is absolutely with Response.Clear(), which removing all the events and hence page is not reepsonding to any event.
         I have a deployed a custom- webpart in to a sharepoint site, which is consisting of a summary html table, button control and Export to Excel button. Every thing is working except events are not fired after export to excel button is clicked. The code inside the export to excel is
Export to Excel Click event code:
Me.Page.Response.Clear() 'clear the response before writing excel stream
Me.Page.Response.ContentType = "application/vnd.ms-excel" 'set the response contenttype as excel
Me.Page.Response.Charset = String.Empty 'set response charset as string
'get the filename to be displayed on the response stream
'specifying the response stream as an attatchment in the header [to open the excel file in the seperate window]
Me.Page.Response.AddHeader("Content-Disposition", "attachment;filename=test.xls")
'write the content on to the screen
Me.Page.Response.Write(sbExcelString.ToString()) 'writing excel stream in the form of string
'end the response once done [otherwise unnecessary conent will be appended at the end of the excel file]
Me.Page.Response.End()
I think somewhere the issue with Response.Clear or Response.End.
As you said there is a remedy for this, but i cant use that remedy because i cannot use a new page becauce my code is entirely in to a custom control and i should not depend on any aspx page.
Please help out in solving this issue in the same custom control click event itself.
I think there is a solution, only thing how to attach the events when we use Response.Clear or Response.End method [but i dont know how do i do this].
Thanks in advance for your helpful message.
Mukthesh.

Similar Messages

  • SSRS 2012 problem with excel export

    Hello
    I updated SSRS 2005 up to SSRS 2012. When I exported report in excel (xlsx)  I got following warning :
    "We found a problem with some conent in 'filnename.xlsx'.Do you want to try to recover as much as we can? if you trust the source of this workbook,click yes"
    After Pressing Yes Button
    "REpaired Recors: Cell information from .xl.worksheets.sheet1.xml port"
    15
    0.00000000000000000000 this is in string format instead decimal
    2
    0.00000000000000000000
    This heppens if i have decimal(38.20) variable in table and record value is 0.
    To avoid this problem i must change report and use this expression
    =IIF(Fields!SomeValue.Value = 0, 0, Fields! SomeValue.Value)
    for value in report, but this is not sulution for me because we have more then hundred reports.
    Is any other solution?

    Hi LashaGurgenidze,
    The issue seems to be related to the Excel 2010 or the Excel 2007-2010 rendering extension in SSRS 2012. If possible, I suggest that you keep the Office 2010 and the SQL Server 2012 up to date, and check the issue again.
    In order to solve the issue, we can enable the Excel 2003 rendering extension in SSRS 2012, and use this render when exporting to Excel. We can modify the EXCEL render extension in the rsreportserver.config file as follows:
    <Extension Name="EXCEL" Type="Microsoft.ReportingServices.Rendering.ExcelRenderer.ExcelRenderer,Microsoft.ReportingServices.ExcelRendering"/>
    Then, the Excel 2003 render extension will be available in the Export drop-down list.
    By default, the file is located in: C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer. Before we modify it please backup the rsreportserver.config file.
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • Many problems with the 'Export to Text' (.txt) in CR Xi

    Hi,
    I have listed many problems with the 'Export to Text' (.txt) function of CR Xi.
    These problems are related to this export format only (meaning everything works fine in the Viewer or in the 'Export to PDF')...
    - Multi-columns layout do not export as Multi-column (export only a one column);
    - Numeric values with parenthesis for negative values or with a fix currency sign at the leftmost position are not exported correctly;
    - Fields having a Suppress formula which is "WhilePrintingRecords" do not appears when exported;
    - Fields with 'Suppress double value' checked are not always suppressed when exported to Text.
    - 'Keep Group Together' flag is not working.
    - 'Reset Page Number After' simply does not works when exported to text;
    - 'Keep object together' on TextBox/Section is not working.
    - Whenever a group is ending on the last line of a page, the the following page as the same Group header as the previous group with no records until the page is filled, then the PageBreak and PageHeader is missing but the records of the following group appears.
    I would like to know what is the status of the 'Export to Text' function (is it a deprecated function not supported anymore???).
    If still supported, when will these bugs be fixed???
    Thanks

    Hi Rene
    Export to Text is supported till date. Crystal Reports 2008 also supports this with Keep together working however when I tried with format with multiple columns, it didnot show up in the exported text file.
    Regards
    Sourashree

  • Problem with Excel output format

    Hi Guys,
    I am creating a report in XML Publisher (not standalone). I am facing some problems could anyone please help me to figure out the issues.
    Is it possible to have all three output format (PDF, HTML & EXCEL) exact (same aligned) only by creating a single RTF Template? I am facing the problem with Excel output format the output format of excel is taking excels cell formatting.
    Example Numeric fields --> Right Aligned, text fields --> Left Aligned
    One more issue with excel is -ve(negative) values are getting displayed in red and in brackets like ($13) (with red color).
    Our client want excel output on priority.
    Is there any limitation for excel output format of reports?
    It is very urgent for us please help.
    Any help would be highly appreciated.
    Thanks,
    Pragati
    Edited by: user11237443 on Aug 27, 2009 1:22 AM

    Hi Mahi,
    Thanks for your response. But i could not understand how can we write wrapper program could you please give some light on this or provide some link it would be helpful for me:-)
    I have read that blog for excel limitations but i have more question?
    1) What about the negative values?
    if any field is displaying negative amount then excel not displaying right value for that:(
    2)How can we align header or data?
    Do XMLP with EBS provide any solution for formatting in excel?
    3) If for the alignment of numeric value we concatenate them with any special character then how can we perform calculation that field?
    Here are so many formatting issues do we need to write any code in xml for that?
    Please help.
    Many Thanks,
    Pragati

  • Problem with CR exporting and Excel formatting/merging

    I'm currently running Visual Studio 2008 (Version 10 of CR).  We have a Winforms application that runs various crystal reports  I can't say there's anything particularly sophisticated about it.  Just slap the report in a viewer, pass in the parameters, and run.  As I've mentioned elsewhere I have not done much with CR (or Excel for that matter).
    The problem is this.  Our client is exporting certain reports to Excel, the 'full' version if that's the right term, not the data only option.  The first field on every line of the detail is a text object consisting of several fields, concatenated.  These fields combined form an ID number that we want to sort by.  Unfortunately, so they tell me, this is currently impossible because in the export, the number occupies two columns and they are not merged.  (Actually it doesn't look like any of the report columns bear any relation to any of the Excel columns.)
    I always thought Excel export was one of those black box extras. 
    Now I have to ask, is there any way to customize it, programmatically or otherwise?  (Am I overlooking any options?)
    (Digging a bit deeper, could there be something in the CrystalDecisions API that I could use?  Not sure I see anything useful in the ExcelExportOptions object yet.)
    Edited by: BChernick on Jul 8, 2011 3:09 PM

    [SAP Crystal Reports Design|SAP Crystal Reports; forum.
    - Ludek
    Edited by: Don Williams on Jul 8, 2011 11:05 AM

  • PROBLEM IN EXCEL EXPORT. URGENT!!!!!

    hi all,
    I have requriment acco to which i need to download or export the content of the table UI element to excel 2003. I used the a excel export application, but facing problem like. in the below mentioned method name, how are the parameters
    1) com.sap.tc.webdynpro.progmodel.api.IWDNode
    2)java.util.map
    has been taken, i am not able to get this in my application where i need to use this method.
    or is there any other method by which i can export my table data to excel2003. please this really urgent requirment.
    public void exportToExcel2003( com.sap.tc.webdynpro.progmodel.api.IWDNode
    dataNode, java.util.Map columnInfos )
    REGRADS
    SHARAN
    Edited by: saisharan kalla on Dec 20, 2007 6:01 AM

    Hi Sharan,
                    What exactly is the problem u r facing with those parameters??
    U can use this method also for excel export
    /people/subramanian.venkateswaran2/blog/2006/08/16/exporting-table-data-to-ms-excel-sheetenhanced-web-dynpro-binary-cache
    U can check with this also
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/snippets/webDynproJava-ExportingTableDataUsingOn-DemandStreams-SAPNW+7.0&
    regards
    Sumit

  • BI 7 Web Templates: Problems with csv-export

    Hi all,
    I am aware that a csv-export out of a web template is associated with excel, meaning that the export in csv opens in excel.
    Nevertheless my problem is, that in the course of the export process several blank columns are inserted.
    So when I afterwards open the file with the "windows editor" for example I have a result like
    PLZ;;;45133 where I expected
    PLZ;45133
    Has anyone an idea?
    Best regards
    Mark

    Hello,
    Is there a hierarchy involved?
    If yes, then the blank spaces are inserted due to the hierarchy. When the hierarchy is drilled down, the blank spaces are inserted to show the hierarchy structure. Unfortunately, this is standard and cannot be changed using standard BW functionality.
    Thanks,
    Michael

  • Problem with PDF export and embedded font (characters disappear)

    Designer: Crystal Reports 2008 SP 2
    Engine: CR4E 2.0 SP2 (runtime_12.2.203)
    Hi there!
    we found a problem in the pdf export. It seems like there would be a problem with the embedded fonts, the problem is as follows:
    Rpt file with, for example only a text box which contains the german string " Änderungs Schlüssel ".
    Export the Rpt file with CR4E to a pdf file.
    When we open the pdf file in Adope Reader 8, the text appears to be correct,
    but if we print the PDF file from the Adope Reader, the text changes to " nderungs Schl sselu201C,
    here we are missing ther german umlaute.
    When we open the file for example with an alternative PDF reader like Foxit Reader, there they are also missing.
    After i found some posts here in the forum, there are people facing the same problem, since i couldn't find a solution in the forum, we build a little workaround for it that works for us.
    For all of you that have the same problem here the workaround:
    We used the IText JAVA library, this jar can can help as to fix the PDF file so the text is displayed correctly.
    Here the code:
    ReportClientDocument doc = new ReportClientDocument();
    doc.setReportAppServer(ReportClientDocument.inprocConnectionString);
    doc.open("C:\XY.rpt", OpenReportOptions._openAsReadOnly);
    //... database logon,.....
    InputStream inputStream = doc.getPrintOutputController().export(ReportExportFormat.PDF);
    inputStream = PDFHealer.heal(inputStream);
    //... write the stream some where

    The helper class using IText:
    import java.io.ByteArrayInputStream;
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import com.lowagie.text.Document;
    import com.lowagie.text.DocumentException;
    import com.lowagie.text.pdf.PdfContentByte;
    import com.lowagie.text.pdf.PdfImportedPage;
    import com.lowagie.text.pdf.PdfReader;
    import com.lowagie.text.pdf.PdfWriter;
    public class PDFHealer
       public static InputStream heal(InputStream in) throws DocumentException, IOException
          try
             ByteArrayOutputStream out = new ByteArrayOutputStream();
             PdfReader reader = new PdfReader(in);
             // we retrieve the total number of pages
             int n = reader.getNumberOfPages();
             // step 1: creation of a document-object
             Document document = new Document();
             // step 2: we create a writer that listens to the document
             PdfWriter writer = PdfWriter.getInstance(document, out);
             // step 3: we open the document
             document.open();
             // step 4: we add content
             PdfContentByte cb = writer.getDirectContent();
             int i = 0;
             while( i < n )
                document.newPage();
                i++;
                PdfImportedPage page1 = writer.getImportedPage(reader, i);
                cb.addTemplate(page1, 0, 0);
             // step 5: we close the document
             document.close();
             ByteArrayInputStream ret = new ByteArrayInputStream(out.toByteArray());
             out.close();
             return ret;
          finally
             in.close();

  • Indesign CS5 - Problems with PDF-Export

    Hello community,
    we do have a problem with Indesign CS5 and exporting data into PDF. It is about that logo on that white surface, which doesnt come along with the rest after the pdf-export. What we did was: We created that white surface in Indesign itself, put an effect on it with the Indesign effect gallery and then imported the logo in the surface ... the logo itself is .psd data. So, if we export it into pdf like that, it is just dissapeared. Does anyone have had a similar problem and what can be done about it?
    By the way ... if you put, for example, a simple backgroundshadow on a picture ... done also with the Indesign effect gallery, then you get just a white surface instead of the shadow, after the export into pdf. It does maybe correlate with the other problem ... not sure. Any suggestions?
    Thank you very much for your help and kind regards ...

    I would create the entire logo, including the white background, in Illustrator, save as PDF and place that in ID.

  • Problem with Xml exporter

    Hi All,
    Thanks in advance for ur warm replies.
    I am exporting personalizations which i did but iam facing problems with this.
    Please help me on this issue.
    Steps i follwed.
    Step1: exec jdr_utils.listcustomizations('/oracle/apps/ego/item/eu/webui/EGOITEMATTRIBUTEPGL');
    It displays me the customizations which i did as follows
    /oracle/apps/ego/item/eu/webui/customizations/responsibility/24091/EGOITEMATTRIBUTEPGL
    Pl/sql procedure completed successfully.
    Step2: Iam now at command prompt on java_top and i run the following command
    java oracle.jrad.tools.xml.exporter.XMLExporter
    /oracle/apps/ego/item/eu/webui/customizations/responsibility/24091/EGOITEMATTRIBUTEPGL
    -username apps -password <mypwd> \
    -dbconnection "(description=(address_list=(address=(protocol=tcp)(host=<host>)(port=<myport>)))(connect_data=(sid=<mysid>)))" \
    -rootdir "/oracle/apps/ego/item/eu/webui/EGOITEMATTRIBUTEPGL'"
    * I don't know exactly what is root directory here. which path i need to provide here.*
    Error: No such file or directory.
    Thanks and Regards
    Zaheer

    Zaheer,
    <output_dir> - (Required) Output directory where the exported xml file structure is to be stored. You may set this to any directory, however, we recommend that you export your packages or XML files to $APPL_TOP/personalizations.
    If you run the export tool for the package
    /oracle/apps/ak/dem/webui/customizations/site/0/REQORDERSTATUSPAGE and specify -rootdir
    $APPL_TOP/personalizations, the xml file is saved as
    $APPL_TOP/personalizations/oracle/apps/ak/dem/webui/customizations/site/0/REQORDERSTATUS PAGE.xml.
    In your case define rootdir as rootdir "/oracle/apps/ego/item/eu/webui ".
    Thanks
    --Anil                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Performance Problems with Excel Client

    Hello all,
    We installed BPC 7.5 SP7 NW on our customeru2019s system and experience massive performance problems on our local clients in combination with Excel and MS Office in general.
    u2022When opening u201CMaintain Dimension Membersu201D it takes some time (approx. 2 min) to open the Excel Sheet with the elements. The u201CSave to Serveru201D as well as the u201CProcess Dimensionu201D also takes time to execute. When executing u201CProcess Dimensionu201D the sandbox appears and it takes approx 2 min until the Process popup window appears. The process itself has normal performance.
    u2022We also experienced slow performance with the opening or saving dynamic templates dialogue in the Excel Client.  It takes some time until this dialogue appears.
    In general, we experience slow performance every time BPC is opening a pop up window! We also experience slow performance when opening a (non BPC) MS Office document.
    In order to resolve this issue we looked at the following notes and forum entries:
    Notes: 1541181, 1531059, 1507575, 1479436, 1448502, 1288810
    Forum: BPC NW slow Performance (Expand, Refresh, Saving) - How to enhance it?, [BPC for Excel] Dimension clicked, then Excel hangs
    Can anybody give me tipps on how to solve this issue?
    Thanks in Advance

    Hi,
    It will work if in IE, Advanced, Security you uncheck "Check for publisher's certificate revocation "
    =======================
    http://CSC3-2004-crl.verisign.com/CSC3-2004.crl
    http://ocsp.verisign.com/MFEwTzBNMEswSTAJBgUrDgMCGgUABBQ%2FxkCfyHfJr7GQ6M658NRZ4SHo%2FAQUCPVR6Pv%2BPT1kNnxoz1t4qN%2B5xTcCEH6eR%2B%2FPmw5g6qZVJ2HNXK4%3D
    http://crl.verisign.com/pca3.crl
    =========================
    Regards to all,
    Laurentiu Bogdan

  • Problem with Excel 2013, crashing unexpectedly

    I have problem with Office, it's crashing without any specific reason. I can't describe what exactly triggers crashing, but there is lots of copy and pasting on that workstation between excel worksheets. RAM has been tested, Office suite has been reinstated
    and even all of hardware has been changed.
    If there any suggestion, I would really appreciate them.
    If you need additional information please ask.
    Faulting application name: EXCEL.EXE, version: 15.0.4701.1001, time stamp: 0x54e30a7b
    Faulting module name: mso.dll, version: 0.0.0.0, time stamp: 0x54d9bfd6
    Exception code: 0xc0000602
    Fault offset: 0x011aee88
    Faulting process id: 0x1990
    Faulting application start time: 0x01d0773e764ce473
    Faulting application path: C:\Program Files\Microsoft Office 15\Root\Office15\EXCEL.EXE
    Faulting module path: C:\Program Files\Common Files\Microsoft Shared\Office15\mso.dll
    Report Id: 66154c61-e40f-11e4-afd6-d43d7eb40d36
    Faulting package full name: 
    Faulting package-relative application ID: 
    System
    Provider
    [ Name]
    Application Error
    EventID
    1000
    [ Qualifiers]
    0
    Level
    2
    Task
    100
    Keywords
    0x80000000000000
    TimeCreated
    [ SystemTime]
    2015-04-16T08:05:52.000000000Z
    EventRecordID
    35372
    Channel
    Application
    Computer
    Security
    EventData
    EXCEL.EXE
    15.0.4701.1001
    54e30a7b
    mso.dll
    0.0.0.0
    54d9bfd6
    c0000602
    011aee88
    1990
    01d0773e764ce473
    C:\Program Files\Microsoft Office 15\Root\Office15\EXCEL.EXE
    C:\Program Files\Common Files\Microsoft Shared\Office15\mso.dll
    66154c61-e40f-11e4-afd6-d43d7eb40d36

    Hi,
    According to your description, >>RAM has been tested, Office suite has been reinstated and even all of hardware has been changed.<< I noticed that you have tired several methods. Then, based on the log,>>Faulting module path: C:\Program
    Files\Common Files\Microsoft Shared\Office15\mso.dll<<, please try the following steps:
    Renamed the MSO.DLL in C:\Program Files\Microsoft Office 15\root\vfs\ProgramFilesCommonX86\Microsoft Shared\OFFICE15
    The copied the MSO.DLL from C:\Program Files (x86)\Common Files\Microsoft Shared\OFFICE15
    to C:\Program Files\Microsoft Office 15\root\vfs\ProgramFilesCommonX86\Microsoft Shared\OFFICE15
    Hope it's helpful.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Problem with Excel 2013 TaskPane

    Hello,
    I got problem with TaskPane on Excel 2013. With Excel 2007 and 2010 my program works perfectly.
    I'm opening a workbook and making custom ribbon, but my workbook is hided and the problem comes that first time i can see TaskPane but after any other workbook opening and closing i can't show TaskPane because Globals.ThisAddIn.SarasuTaskPane.Visible
    = true don't showing me TaskPane. Actual it's showing but we can't see it because it's hided with workbook, and if i unhide workbook i can see and use it. But i need my main workbook to be not visible for all time and users must see TaskPane.
    I will try write step by step.
    1. I'm launching .exe which creating excel object
    2. With Excel object I'm opening .xlsm which sheets are protected and not visible, and Run my Sub
    3. That Sub loads my COM AddIn, and opens another .xlsm file (at the moment there are 2 .xlsm files opened)
    4. My Add-in creates TaskPane, and TaskPane adds on my first .xlsm file(i noticed), and it's fine i can see it. But then i try some of my functions which sets TaskPane visible - false, and opens another .xlsx file then closes it, and trying to do TaskPane visible
    - true no errors but also no TaskPane, then i Manually unhide my first Workbook i can see the TaskPane, when i hide it manualy - TaskPane hides too.. and this only on Excel 2013.
    Any ideas to solve this? As i mention before with Excel 2007 and 2010 no problems it's works perfectly.
    sincerely,
    Julius

    I have used you code to hide a panel , it works fine
    Maybe my first post was incorrectly written. I will try write step by step.
    1. I'm launching .exe which creating excel object
    2. With Excel object I'm opening .xlsm which sheets are protected and not visible, and Run my Sub
    3. That Sub loads my COM AddIn, and opens another .xlsm file (at the moment there are 2 .xlsm files opened)
    4. My Add-in creates TaskPane, and TaskPane adds on my first .xlsm file(i noticed), and it's fine i can see it. But then i try some of my functions which sets TaskPane visible - false, and opens another .xlsx file then closes it, and trying to do TaskPane
    visible - true no errors but also no TaskPane, then i Manually unhide my first Workbook i can see the TaskPane, when i hide it manualy - TaskPane hides too.. and this is only on Excel 2013.

  • Problem with Excel 2013 on W8 and WD NAS

    With my W8 laptop, I get a lot of problem saving excel file on my NAS. I get "we can't save filename.xlsx because the file is in read-only. To keep your changes you'll need to save the workbook with a new name or in a different location..."
    I'm alone using the file. Not being use by anyone else.
    Exemple: load file "A" from the NAS, can't save it back on the NAS. I save it as "B" on my desktop. Open "B" do some change and try to save it... get " that someone else is using the file....
    Only way is to save it one a 3rd name...
    I have this issue often but not all the time..
    Don't see this with W7pro laptops...
    Thank you 

    Hi FGauthier,
    Have you ever try to save Document ,PPT file or Text file to the NAS? Does this issue only occurs with excel file?
    what will happen if you copy the file to NAS instead of use the 'save as' feature within excel?
    When you open the excel file, if it flagged as read-only, try to right-click the file, check if the read-only option is ticked. Also you can try to save the file as different file format to test this issue.
    Also please check if you enable the preview pane, try to disable it . 
    a) Open File Explorer.
    b) Click on View Tab.
    c) Click on Preview Pane to view\hide it.
    Wind Zhang
    TechNet Community Support

  • Problems with Excel 2007 and Essbase 6.5

    Hi,
    Two quick questions:
    1. We are planning to upgrade our office to 2007, XP professional SP2 but still going to use Essbase excel add-in 6.5 for some users and Essbase 7.3 add-in for others. Has anyone faced any problems with this combination?
    2. The only problem I encountered so far was when I double click a member name for retrieval, the pointer (cursor/icon) flickers / flashes continuously. But when I take the pointer out of the excel spreadsheet, the flicker goes away. Does anyone know a fix to this. Thanks.

    Hi,
    I'm admin of an hyperion essbase database.
    I'm testing our addin 6.5.1 with excel 2007.
    First problem evocated on retrieve is confirmed.
    I continue my test and tell you if i find another problem.
    What i would say is that old version can be unsupported but i'm sure we can use this addin on excel 2007, i hope.
    Regards.
    Edited by: user9947793 on 4 sept. 2009 08:56

Maybe you are looking for

  • Configuring QoS for FIOS Router MI-424WR: Traffic Priority and Shaping

    Please only read on if you are an experienced internet user familiar with setting the advanced QoS and Firewall settings for the MI-424WR and make use of wireless adaptors from a PC to provide connectivity. This is my first post and my first week sin

  • HP OfficeJet Pro 8600 - Text Gray not Black - HP Utility Crashes - Hundreds of Ethernet Messages

    I bought an HP OJP 8600 for home use, hoping for quality and speed, and little intervention on my part.  Using the printer from both an HP Windows 7 Laptop, and a MacBook Pro OS X 9.5, but mostly the MacBook Pro. I recently started working ten hours

  • Sudden slow start up for iPhoto 08

    Hi Im running the latest version of iphoto (7.1.4), on a pretty good spec machine (15" 2008 model mac book pro, 2.6ghz clock, and 4gb ram. I have 5800 photos in 45 events. when i start up iphoto, it takes about 2 full minutes for it to start up, with

  • Soundtrack Pro 3.01

    Sent a 14 minute film(DV Pal)  as a multitrack session from FCP and the application crashes as soon as I click on the edge of an audio cue Tried sending without any vision and no difference. Going to try an Media Managed version of the sequence. Afte

  • Mail not recognizing ZIP and PDF attachments

    Since upgrading to Leopard, I have received a few emails with attachments in my work IMAP account. Some of the emails are fine (the ones with XLS and DOC attachments) and others display the attachment as a bunch of encoded text in the email (ZIP and