APPCRASH EXCEL.EXE LCID: 1033

Has anyone encounter this issues before:
Problem signature:
  Problem Event Name:                        APPCRASH
  Application Name:                            
EXCEL.EXE
  Application Version:                           14.0.6126.5003
  Application Timestamp:                     505b0834
  Fault Module Name:                          EXCEL.EXE
  Fault Module Version:                        14.0.6126.5003
  Fault Module Timestamp:                  505b0834
  Exception Code:                                 
c0000005
  Exception Offset:                               
0040fa29
  OS Version:                                         
6.1.7601.2.1.0.256.4
  Locale ID:                                            
1033
Additional information about the problem:
  LCID:                                                    
1033
  skulcid:                                                
1033

Hi,
What action did you do then the error occurs?
And check to see whether you have installed latest update.
Also, start Excel in safe mode to check whether the issue is caused by some add-ins.
Jaynet Zhang
TechNet Community Support

Similar Messages

  • EXCEL.EXE process is keep running even after closing all the handles

    I am using Excel Report Instrument functions  for creating excel application and sheet,workbook after reading/writing in to excel file am closing all the handles using CA_DiscardObjHandle (handle);     even after file is getting closed m checking it in TaskManager then one EXCEl.EXE process is keep running there,pls let me know how to deal with this....
    Solved!
    Go to Solution.

    A Kumar:
    Have you tried running the example program excelreportdemo.prj that ships with CVI?  It ends the excel process by discarding multiple handles, and it works even if you're editing a cell or have an Excel dialog open, etc.  Try running this without modification and verify that the excel process is closed when you quit the CVI app.
    Here's the Quit function from excelreportdemo.  It checks for and closes handles for the worksheet, chart, workbook, and excel application.
    int CVICALLBACK Quit (int panel, int control, int event,
            void *callbackData, int eventData1, int eventData2)
        switch (event)
            case EVENT_COMMIT:
                if (worksheetHandle)
                    CA_DiscardObjHandle(worksheetHandle);
                if (chartHandle)
                    CA_DiscardObjHandle(chartHandle);
                if (workbookHandle)
                    ExcelRpt_WorkbookClose(workbookHandle, 0);
                    CA_DiscardObjHandle(workbookHandle);
                if (applicationHandle)
                    ExcelRpt_ApplicationQuit(applicationHandle);
                    CA_DiscardObjHandle(applicationHandle);
                QuitUserInterface (0);
                break;
        return 0;

  • APPCRASH iTunes.exe KERNELBASE.dll 6.1.7601.18015

    Dear All,
    APPCRASH iTunes.exe KERNELBASE.dll 6.1.7601.18015
    Problem Event Name:
    APPCRASH
      Application Name:
    iTunes.exe
      Application Version:
    11.0.5.5
      Application Timestamp:
    520e4d27
      Fault Module Name:
    KERNELBASE.dll
      Fault Module Version:
    6.1.7601.18015
      Fault Module Timestamp:
    50b83c8a
      Exception Code:
    c06d007e
      Exception Offset:
    0000c41f
      OS Version:
    6.1.7601.2.1.0.256.48
      Locale ID:
    16393
      Additional Information 1:
    0a9e
      Additional Information 2:
    0a9e372d3b4ad19135b953a78882e789
      Additional Information 3:
    0a9e
      Additional Information 4:
    0a9e372d3b4ad19135b953a78882e789
    when i connect to Itune stores

    Hi Ravishankys,
    If you are having an issue with iTunes unexpectedly quitting when you connect to the iTunes Store, you may find the following article helpful:
    iTunes for Windows Vista or Windows 7: Troubleshooting unexpected quits, freezes, or launch issues
    http://support.apple.com/kb/ts1717
    Regards,
    - Brenden

  • Excel.exe is still there in the Memory

    Hi I am creating an excel object using asp.net
    Though I am closing the objects and marshalling the excel object there still displays a excel.exe process in the memory...
    If I am running my application 50 times , say..I have 50 Excel.exe reference in memory,,,
    Please Kindly let me know how do i get rid of these refrences...
    Sample of my code:
    Dim ExcelObj As Excel.Application
    Dim sheets As Excel.Sheets
    Dim theWB As Excel.Workbook
    some code
    theWB.Save()
    sheets = Nothing
    theWB.Close()
    theWB = Nothing
    ExcelObj.Quit()
    System.Runtime.InteropServices.Marshal.ReleaseComObject(ExcelObj)
    But still no use....
    Thanks in advance

    Are you in the right forum ?

  • Ole2 object can not kill excel.exe process

    Hi every body
    I have a code that I have to generate lots of excel file from ole2 object. I have a loop and I generate excel file in it. my problem is that after each step that one excel file created and quit from that, excel.exe process will remain in memory(you can see it in task manager) and all of excel.exe process will kill after end of the program. I want that I have one excel.exe process in my memory for each step of my loop. this is my code :
    REPORT  Ztest.
    INCLUDE ole2incl .
    DATA: gs_excel TYPE ole2_object ,
    gs_wbooklist TYPE ole2_object ,
    gs_application TYPE ole2_object ,
    gs_wbook TYPE ole2_object ,
    gs_activesheet TYPE ole2_object ,
    shapes TYPE ole2_object,
    gs_sheets TYPE ole2_object .
    DATA : file_in TYPE string,
            count TYPE n LENGTH 2.
    DO 20 TIMES.
    CLEAR : file_in.
             count = count + 1.
             CONCATENATE 'D:\PP\' count  '.xls' INTO file_in.
      CREATE OBJECT gs_excel 'EXCEL.APPLICATION'.
             SET PROPERTY OF gs_excel 'Visible' = 0 .
             GET PROPERTY OF gs_excel 'Workbooks' = gs_wbooklist .
             GET PROPERTY OF gs_wbooklist 'Application' = gs_application .
             SET PROPERTY OF gs_application 'SheetsInNewWorkbook' = 1 .
             CALL METHOD OF gs_wbooklist 'Add' = gs_wbook .
             GET PROPERTY OF gs_application 'ActiveSheet' = gs_activesheet .
             SET PROPERTY OF gs_activesheet 'Name' = 'Sheet1' .
      CALL METHOD OF gs_activesheet 'SaveAs'
             EXPORTING #1 = file_in #2 = 1.    
             CALL METHOD OF gs_wbooklist 'Close'.
             CALL METHOD OF gs_application 'Close'.
             CALL METHOD OF gs_activesheet 'Close'.
             CALL METHOD OF gs_excel 'Quit'.
             CALL METHOD OF gs_application 'Quit'.
             FREE OBJECT :gs_application , gs_wbooklist ,gs_excel, gs_wbooklist ,
                     gs_activesheet , gs_wbook.
    ENDDO.
    thanks alot.

    Why are you programmatically opening an Excel sheet in C# instead of using the DataFlow task with an Excel input?
    Since your task is programmatically starting Excel via "new Microsoft.Office.Interop.Excel.Application();", it is your responsibility to stop it.
    Please see "Quit":
    http://msdn.microsoft.com/en-us/library/microsoft.office.interop.excel._application.quit(v=office.15).aspx

  • Client_ole2 EXCEL.EXE process not killed

    Hi,
    In a webForm, using webutil I open an Excel file with Client_ole2.
    When I close Excel the underlying process is not killed; I can still see an EXCEL.EXE process in my task manager.
    The consequence is that I can’t open an Excel file while the above mentioned process is still running.
    The EXCEL.EXE process keep on running until the local JVM shuts down.
    Can anyone give some advise what to do?
    Is this perhaps a known bug in webutil?
    Code.
    I use the following code (Extract):
    elsif upper(substr(l_locatie_client,-4,4)) in ('.XLS','.CSV') then
    -- open Excel
    application := CLIENT_OLE2.CREATE_OBJ ('Excel.Application');
    -- maak visible
    CLIENT_OLE2.SET_PROPERTY(application,'Visible',1);
    -- open document
    workbooks := CLIENT_OLE2.get_obj_property(application, 'workbooks');
    ArgList := CLIENT_OLE2.create_arglist;
    CLIENT_OLE2.Add_Arg(ArgList, l_locatie_client);
    workbook := CLIENT_OLE2.Invoke_obj(workbooks,'Open', Arglist);
    CLIENT_OLE2.Destroy_Arglist(Arglist);                         
    -- release objects
    CLIENT_OLE2.Release_Obj(workbook);                         
    CLIENT_OLE2.Release_Obj(workbooks);                         
    CLIENT_OLE2.Release_Obj(Application);                         -
    else
    qms$show_message('Can’t open this type of file.', 'I', FALSE);
    end if;
    specifications.
    server:
    Microsoft Windows 2000
    Service Pack 3
    Oracle 9iAS 9.0.2.3.0
    Webutil 1.0.2
    Client:
    Microsoft Windows XP
    Professionel version 2002
    JInitiator version 1.3.1.13
    Greetings,
    Wouter

    Please post your question to the FOrms page - and click on the forums link
    otn.oracle.com/products/forms
    Regards
    Grant Ronald

  • How Can I Kill Excel.exe Process After finish my Execution of SSIS Package in Sqlserver2008r2

    Hi !,
          am new for c# and SSIS Package Creation , I am Trying to Read Excel file, and load the value into Sqlserver using SSIS package . My Problem is , After Execution of SSIS package Still Running EXCEL.exe Process in my server. i need to
    kill that process . I post my Code Exactly where am release my excel file object , please guide me where am going to wrong?
    Server Configuration
    OS:windows7
    SqlServer :2008r2
    Framework:3.5
    please give me some suggestion to correct my error .
    Here is My Code:
                Microsoft.Office.Interop.Excel.Application xlApp;
                Microsoft.Office.Interop.Excel.Workbook xlWorkBook;
                Microsoft.Office.Interop.Excel.Worksheet xlWorkSheet;
                var missing = System.Reflection.Missing.Value;
                xlApp = new Microsoft.Office.Interop.Excel.Application();
                xlWorkBook = xlApp.Workbooks.Open(filename, false, true, missing, missing, missing, true, Microsoft.Office.Interop.Excel.XlPlatform.xlWindows, '\t', false, false, 0, false, true, 0);
                xlWorkSheet = (Microsoft.Office.Interop.Excel.Worksheet)xlWorkBook.Worksheets.get_Item(1);
                Microsoft.Office.Interop.Excel.Range xlRange = xlWorkSheet.UsedRange;
                Array myValues = (Array)xlRange.Cells.Value2;
    int vertical = myValues.GetLength(0);
                int horizontal = myValues.GetLength(1);
                System.Data.DataTable dt = new System.Data.DataTable();
                bool isNameRead = false;
                // get header information
                for (int i = 1; i <= horizontal; i++)
                    string cellValue1 = "";
                    object cellObj = myValues.GetValue(1, i);
                    if (cellObj != null)
                        cellValue1 = myValues.GetValue(1, i).ToString();
                        if (cellValue1 == "Name")
                            if (!isNameRead)
                                dt.Columns.Add(new DataColumn(cellValue1));
                                isNameRead = true;
                            else
                                dt.Columns.Add(new DataColumn(cellValue1 + 1));
                                isNameRead = false;
                        else
                            dt.Columns.Add(new DataColumn(cellValue1));
                // Get the row information
                for (int a = 2; a <= vertical; a++)
                    //string cellrowvalue = "";
                    string isemt = "";
                    object[] poop = new object[horizontal];
                    for (int b = 1; b <= horizontal; b++)
                        isemt =(string) myValues.GetValue(a, b);
                        if (isemt != null)
                            poop[b - 1] = myValues.GetValue(a, b);
                    DataRow row = dt.NewRow();
                    row.ItemArray = poop;
                    dt.Rows.Add(row);
    xlWorkBook.Close(true, missing, missing);
                xlApp.Quit();
                releaseObject(xlWorkSheet);
                releaseObject(xlWorkBook);
                releaseObject(xlApp);
                return dt;
    releaseObject
    private void releaseObject(object obj)
                try
                    System.Runtime.InteropServices.Marshal.ReleaseComObject(obj);
                    obj = null;
                catch (Exception ex)
                    obj = null;
                    MessageBox.Show("Unable to release the Object " + ex.ToString());
                finally
                    GC.Collect();
                    GC.WaitForPendingFinalizers();
                    GC.Collect();
                    GC.WaitForPendingFinalizers();
    Thanks
    Parthasarathi Purushothaman

    Why are you programmatically opening an Excel sheet in C# instead of using the DataFlow task with an Excel input?
    Since your task is programmatically starting Excel via "new Microsoft.Office.Interop.Excel.Application();", it is your responsibility to stop it.
    Please see "Quit":
    http://msdn.microsoft.com/en-us/library/microsoft.office.interop.excel._application.quit(v=office.15).aspx

  • EXCEL.EXE in task manager not terminating after FREE OBJECT statement

    hi,
    can someone please help me find what's wrong with my codes below.  my problem is that after executing the entire codes, the EXCEL.EXE remains in the task manager.
    DATA: g_excel          TYPE ole2_object,
          g_workbooks      TYPE ole2_object.
    Create Excel Object
        CREATE OBJECT g_excel 'EXCEL.APPLICATION'.
        IF sy-subrc NE 0.
          MESSAGE e000(z2) WITH 'No Excel Creation Possible'(lrc).
        ENDIF.
    Display Alerts While Macro Is Running
        SET PROPERTY OF g_excel 'DisplayAlerts' = 0.
    Put Excel In Background
        SET PROPERTY OF g_excel 'VISIBLE' = 0.
        CALL METHOD OF g_excel 'Workbooks' = g_workbook.
        CALL METHOD OF g_workbook 'Open'
          EXPORTING #1 = p_file.
        GET PROPERTY OF g_excel 'ActiveWorkbook' = g_workbook.
    Save File To PC
        CALL METHOD OF g_workbook 'SAVEAS'
          EXPORTING
          #1 = p_file
          #2 = 1.
    Close The Workbook And Excel Application
        CALL METHOD OF g_workbook 'CLOSE'.
        FREE OBJECT g_workbook.
    Free Objects Used
        CALL METHOD OF g_excel 'QUIT'.
        FREE OBJECT g_excel.
    im guessing that the statement CALL METHOD OF g_workbook 'SAVEAS'.. has something to do with the issue because when i commented that statement, everything went fine - the EXCEL.EXE process is gone in the task manager.
    appreciate any inputs..
    thanks!
    Kel

    Hello,
    the correction in OSS note 575877 for function module ALSM_EXCEL_TO_INTERNAL_TABLE will free the 6 objects instead of just one.
    >>>>> Begin of change note 575877
    to kill the Excel process it's necessary to free all used objects
      FREE OBJECT h_cell.       m_message.
      FREE OBJECT h_cell1.      m_message.
      FREE OBJECT range.        m_message.
      FREE OBJECT worksheet.    m_message.
      FREE OBJECT workbook.     m_message.
      FREE OBJECT application.  m_message.
    <<<<< End of change note 575877
    best regards,
    J. N. N.

  • When I try to download acrobat xi pro it tells me to first close excel.exe, however, I don't see anything open. what is the problem?

    when I try to download acrobat xi pro it tells me to first close excel.exe, however, I don't see anything open. what is the problem?

    Hi,
    Did you check the task manager on your computer.
    Thank You

  • Windows 8.1 Can't see excel.exe in Office folder using Explorer but I can see it when I do a search.

    I am trying to associate Excel.exe with a spreadsheet file used by the State of Wyoming *.wog.  When I used the "Open with" command it doesn't show Excel in the Office14 folder even though a "Search" of the C: Drive shows that is
    exactly its location. When I right click the Excel.exe file that was found from the search I have the option to open the folder.  Doing so shows me all the files in the Office14 folder instead of only the fraction that shows
    up in Explorer.
    I have  administrator rights and have checked the boxes under "view" to show all folders and files including system folders.
    Why are all the *.exe files in Office14 impossible to access using Explorer or the "Open With" Command?

    Hi,
    If your Win8.1 was 64bit version and Office 2010 32bit version, when you used "open with" to find Office programs the default path was C:\Program Files\Microsoft Office\Office14. It was a 64bit version path.
    Thus, we need to choose the 32bit path: C:\Program Files (x86)\Microsoft Office\Office14. Please try it.
    Regards,
    George Zhao
    TechNet Community Support

  • NVision not running excel.exe

    Hello,
    I'm working with Peopletools 8.52 and trying to run an nVision report. The process gets stuck on initiated in Process Monitor and doesn't continue on.
    I have run psnvs.exe with the /register option as well as restarted the NT process scheduler, but when I check the Windows Task Manager, there is a single psnvs.exe process running and no excel.exe being initiated.
    Please advise,
    Thank you.

    Are you running on Windows 2008 R2 64-bit? If so, take a look at
    E-NV: Windows 2008 64-bit Configuration To Allow nVision To Run To Success In 2-Tier And Web [ID 1206163.1]
    and if you haven't already done so, try creating the
    C:\Windows\SysWOW64\config\systemprofile\Desktop
    directory and make sure the user you specified for the Oracle ProcMgr service has read/write access to this directory. Worked for me on 8.51, not sure if anything changed in 8.52.
    Regards,
    Bob

  • Webutil: excel.exe process remains

    Environment: Win2000, 9ids, Webutil 1.0.2(Beta)
    Hi all,
    i am doing some testing with webutil. I found out that using the following code in a when-button-pressed trigger on a simple form, it works fine, but an excel.exe process still remains in taskmanager. It is only released/killed when I close my form.
    declare
    application client_ole2.obj_type;
    BEGIN
    application := client_ole2.create_obj('Excel.Application');
    client_ole2.set_property(application,'Visible','True');
    client_ole2.invoke(application,'Quit');
    client_ole2.release_obj(application);
    END;
    Am i doing something wrong?
    Thanks in advance
    Gerald Krieger

    Dear Gerald,
    I'm surprising that why I cannot get a functional result from generating Excel and Word reports as well as importing data from Excel spreadsheets with SAME codes as yours. I'm using Webutil(Ver 1.0.2) in form 9i (Ver 9.0.4.0.19) with JInitiator 1.3.1.13. I get WUC-20 error when open the form which contains Webutil Ole2 functions. How can I fix it? What am I miss?
    Error Description
    ERROR>WUC-20 [URLDownload.pullFile()] The stated size of the source file http://nt4_132:8889/forms90/f90servlet/webutil/jacob.dll does not match that of the downloaded file C:\PROGRA~1\Oracle\JINITI~1.13\bin\jacob.dll
    I've downloaded the d2kwut60.dll, jacob.dll & JNIsharedstubs.dll under the same directory. I also find that Jinitiator will download these DLLs when form service startup to c:\program files\oracle\jinitiator 1.3.1.13\bin, but not to \webutil. These 2 sets of DLLs are different, is it really normal and workable of calling Webutil Ole2 functions?
    I understand that WUC-20 related to the defination problem of install.syslib.location. I've tried the following settings but none go without this error. What are the settings which make the virtual directory be found and read?
    Settings I try:
    - install.syslib.location=/webutil
    - install.syslib.location=http://<server>:<port>/forms90/webutil
    - install.syslib.location=http://<server>:<port>/forms90/f90servlet/webutil
    - install.syslib.location=//../webutil
    Besides, I check the DLLs (d2kwut60.dll, jacob.dll & JNIsharedstubs.dll under JInitiator\bin) in text editor and find that there is no 404 error. And both d2kwut60.dll & JNIsharedstubs.dll are non-readable. Does this result satisify?
    What make ur code open Excel successfully while I fail to do so? How to make these downloaded DLLs workable? What are the steps I need to do in order to get no error when the form calls Webutil Ole2 functions?
    Moreover I would like to know more of the configurations and settings since I still get errors even I've done all Webutil normal and additional setup steps.
    I've tried to import data from Excel spreadsheet with Ole2 in 9i in client side. All my codings can be worked and also faced the problem of Excel.exe process remaining. ALso I cannot launch the excel spreadsheet by double-clicking the document in Windown NT Explorer after running this import function. Is there any solution to fix these cases?
    Please please help. Thank you very much.
    Steffany.

  • Hidden Instance of EXCEL.EXE will not close

    Post Author: Doughboy
    CA Forum: Xcelsius and Live Office
    Does anyone else experience this?  I experience it in both Xcelsius 4.5 and 2008
    When you first start working with an Excel model in your dashboard project, you can see a new process of EXCEL.EXE in your Windows Task Manager.
    After I close Xcelsius, the EXCEL.EXE process does not close. 
    When I shut down my PC at the end of day, I get prompted by this hidden Excel to save a whole bunch of files name im0.xls, im1.xls, im2.xls, im3.xls (file names are a bit different in 2008 version).  I assume the "im" stands for Infommersion, who owned Xcelsius before BusObj did.

    Post Author: amr_foci
    CA Forum: Xcelsius and Live Office
    i face that problem all the time, but anyway, you can open the task manager and kill the process of the excel

  • How do i close excel.exe in order to install Acrobat XI Pro? Thanks!

    I dont have any application opened, even though the Adobe Application Manager still asks to close excel.exe in order to continue installing the Acrobat XI Pro trial version. How do i solve this? Thanks in advance!

    It appears that Excel did not close properly. You will have to kill the process using the Task Manager.

  • Found 1 web using missing web template 14001 (lcid: 1033) with compatibility level 14

    Hi,
    I am receiving the following error when I try to upgrade an SP 2010 content database to SP2013: "Found 1 web using missing web template 14001 (lcid: 1033) with compatibility level 14".
    How do I find out what that web template is? Or, how do I move all of the web templates from the old sp to the new sp?
    thanks,
    Sherazad
    Sherazad

    I believe this PowerShell should work:
    > Get-SPWebTemplate
    |
    select
    ID,
    Name, Title | Sort-Object
    ID
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

Maybe you are looking for

  • I dont see the point of using Ant Build compared to executable Jars?

    I always think that to complete a project you successfully build it. And i thought that building is done automatically if you create an executable JAR? So what is ANT for? Arent Executables is the same as building your project?

  • Installing Lion 10.7.1 or later on a new hard drive

    I just bought a new Macbook Pro 17".  Guess what???  No installation disks.  Only a "recovery" app.  How would one go about installing Lion 10.7.1 or later on a new hard drive without a local copy of the system? I just talked with Support.  Apparentl

  • Code appearing in page

    hello all. I'm a fairly inexperienced user so go easy on me, but i'm having some code appear at the top of a page i'm working on. It does not appear in IE, but only in Mozilla Firefox. I am using layers (i know, i know). here is the code: <%@ page la

  • Playlist didn't transfer after Home Sharin!!

    Hi there! Just bought a new compute and set up the home sharing between the two computers. I see all of the songs but the playlists didn't transfer. I tried going to file, library, import playlist like another post said but it wants me to find the fi

  • Problem with tab strip in report programing

    hi, I have coded 4 tab strips in a report program.Each tab has some obligatory fields. My requirement is user must fill all obligatory fields. suppose if I enter values only one tab and execute , its not asking the obligatory fields in other tabs.may