Excel is still live after closing it

Hello all!
I'm using LabVIEW 7.1 and Excel 2000 for report generation (without report generation toolkit).
My problem is that even if I close all references and I quit Excel, it is still live (looking at task manager). My OS is Win2000.
I noticed that I have this behaviour when I use the method Copy or Move between a sheet belonging to a workbook toward another workbook.
Could anyone help me?
Thanks in advance.
Massimo

Massimo,
You need to be very careful which order you close your references in.
You need (generally speaking) to close them in the reverse order to opening.
If you open a worksheet, then a reference to a cell you will need to
close the reference to the cell first, then the reference to the
worksheet.  Closing the worksheet with an open cell reference on
the worksheet will not work and will ultimately cause the Excel
application to remain open.
Make sure you're doing this and you should be fine.  Additionally,
double-chesk that you're really closing ALL references.  Some
functions can produce new references which will also need to be closed.
Hope this helps
Shane.
Using LV 6.1 and 8.2.1 on W2k (SP4) and WXP (SP2)

Similar Messages

  • Task manager says LR 2.2  still runs after closing - really?

    Wondering why, a good while after closing LR2.2, the task manager says LR is still running as a process. I've closed the application normally from the GUI, nothing in the taskbar. Much smaller footprint, down to say 100mb from "really up and running" footprint of >750mb.
    If real, what is it doing?
    I'm suspecting this may be why I have problems ejecting a portable drive w/ Vista saying "drive in use" when I don't have a "visable application" on the desktop that's attached to the drive for anything. Without an explicit "eject," I'm hesitant to disconnect the portable drive without taking the machine down (a drag). Running LR2.2 64bit on Vista w/ 4gb ram. (runs quite well in general). Thanks for comments.

    Hello and thanks to both of you.
    I copied the previews completly over and deleted the whole preview folder. After that it seems to be much speedier. Only from time to time it hangs up, but only every 10 attempts or so.
    So far, I think your answers helped.
    Thanks again for the fast and good help!
    Greetings
    Christoph

  • Why are Illustrator CC 2014 dialogue boxes dropshadows still visible after closing.

    Hi,
    Has anyone experienced this behaviour before?
    Seems to be the dialogue boxes that appear in the centre of the screen when opened from the Control Bar.
    They also remain visible after closing AI. See image below.
    Computer specs:
    Dell Precission M6700
    Windows 7 Professional
    64-bit
    Illustrator CC 2014 1.1 Release
    Any help in resolving this frustrating bug would be greatly appreciated.
    Cheers
    Ben

    I have the same problem. Bought a new grafic video card AMD FirePro AND a new monitor. Didn't help. Tried asking Adobe, no luck sofar.

  • Excel application still running after ole2.release_obj

    Does anybody know how to close Excel once you have started it via the OLE2 package?
    I can close the spreadsheet but the Excel application still stays active.

    To release the objects you can use : ole2.Release_Obj()
    Please check also Re: how to get data from excel to oracle form6i

  • NotifyIcon icon still visible after closing form

    Hi,
    I have an application that's using NotifyIcon control. Everything is fine except when I exit the application, the icon is still in the "system tray" area. I want it to disappear once I exit the application. Anyone have the same experience, pls share. Thanks in advance.
    Regards,
    Sha

    Hi,I know this is the post to get rid of the notifyIcon, but since we are on the topic; I am running a program that needs to stay open as a NotifyIcon unless closed by the context menu I have attached to the NotifyIcon. I have like a dashboard type program
    that contains the "X" close button and what I want is that when the user clicks that button, the form will hide itself, not close. Is there a way to do this? I have attached a small code snippet.
    private void enterDashboardToolStripMenuItem_Click(object sender, EventArgs e)
    Form1 frm = new Form1();
    frm.Show();
    private void exitAspireCoreToolStripMenuItem_Click(object sender, EventArgs e)
    this.Close();
    private void Form1_FormClosed(object sender, FormClosedEventArgs e)
    this.Hide();
    private void Form1_FormClosing(object sender, FormClosingEventArgs e)
    this.Hide();
    private void notifyIcon1_DoubleClick(object sender, EventArgs e)
    this.Show();
    Whutchison

  • IFrame(child container) still visible after closing the title window(parent container)

    Hi All ,
    I have created a sample project using a link button which when clicked opens up an TitleWindow which has an iframe and a text area in a hbox
    When you execute the application ,
              Click the link button
              The Popup window opens up showing the title window with the close button
              Click the close button of the title window
              The Title window is removed and the iframe and the text area are not visible
    Do this a couple of times
    You can notice that the iframe is still visible even when the title window is closed
    Can someone explain me how this issue can be resolved and also explain me why the iframe(child container) is still visible when the title window(parent container) is not visible. 
    Main Application file
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application
        width="100%" height="100%" creationPolicy="all"
        xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="vertical" creationComplete="init()"
        xmlns:containers="containers.*">
       <mx:Script>
       <![CDATA[
           import mx.managers.PopUpManager;
           import containers.PopUpBrowser;
           public function doRequest():void
                    var requestPopup:PopUpBrowser = PopUpManager.createPopUp(this, PopUpBrowser) as PopUpBrowser;
                    PopUpManager.addPopUp(requestPopup,this);
                    requestPopup.x = 220;
                    requestPopup.y = 50;
       ]]>
       </mx:Script>
       <mx:Text fontSize="14" fontWeight="bold" text="Click the link button below to open the Title Window" />
       <mx:Spacer height="100"/>
       <mx:LinkButton label="Click me" fontSize="16" fontWeight="bold" click="doRequest()"/>
    </mx:Application>
    PopUpBrowser.mxml Component
    <?xml version="1.0" encoding="utf-8"?>
    <mx:TitleWindow
        xmlns:mx="http://www.adobe.com/2006/mxml"
        close="removeMe()"
        showCloseButton="true"
        styleName="myTitleWindowStyle"
        width="850" height="500"
        title="Klout User Profile"
        paddingTop="1" paddingBottom="1"
        paddingLeft="1" paddingRight="1"
        xmlns:generic="com.serendio.voom.components.generic.*"
        xmlns:flexiframe="http://code.google.com/p/flex-iframe/"
        horizontalScrollPolicy="off"
        verticalScrollPolicy="off" >
        <mx:Script>
            <![CDATA[
                import mx.managers.PopUpManager;
                public function removeMe():void
                    PopUpManager.removePopUp(this);
            ]]>
        </mx:Script>
        <mx:HBox width="100%" height="100%">
        <flexiframe:IFrame source="http://www.google.com" id="iFrame" width="50%" height="100%"/>
        <mx:TextArea text="Open and close the title window few times and watch the iframe remain visible even when the title window is closed"
             fontSize="14" width="50%" height="80%"/>
        </mx:HBox>
    </mx:TitleWindow>
    Thanks,
    Ajantha

    Hey,
    This is working fine for me with the current 4.5 Flex, Firefox 3.6.12, IE8. On what browser you are getting this error.
    Thanks,
    Jayagopal.

  • With Windows 7 (64 bits), Firefox still open after closed

    Hello,
    I am running Firefox 3.6.8 on Windows 7 (64 bits).
    When I close Firefox, it stays open and you cannot reach it.
    If you try to start Firefox again. It refuse because another occurence is running.
    The way to solve is to close the running occurrence using the task manager.
    Rgds,
    NB

    There are a few possible causes for this, for things to check see [[Firefox hangs#Hang at exit|Firefox hangs at exit]]

  • Wifi still disconnecting after closing lid with Lion 10.7.1

    I updated Lion, thinking this issue would cease, since Wifi fixes were listed as included in this update.
    When I close my mid 2009 MBP lid and later open and log in, wifi is disconnected.  I have to open Network Preferences and reconnect. Very annoying!

    Thanks, guys.
    My sleep is off. 
    My MBP never did this before I updated to Lion.  I have been using this since 2009 and Wifi never disconnected when I went on standby.
    I see on the web that this is a common issue with Lion.  I was hoping the update would fix this.  I tried all of the "fixes" reported on line.  None have worked.
    I am posting here for help and hoping that Apple will read this as well.

  • Freezes when redirected on web & firefox32.exe still running after closing app

    When a link leads to a "redirect" page, Mozilla freezes.
    Dell laptop w/ Win7 Home Premium
    No crash reports exist although "Submit crash reports" is checked...
    Thanks for any help.
    Ed

    Hai Erik,
    That was execellent work done. But
    I have not been able to use javaw properly.Can You Help me?
    See,I have used javaw class name.Then Put all paths and command lines into a batch file.Then I ran the batch. Now If I click that batch file it runs. But How can we use javaw as like is done in the demo folder of jdk1.2.2. They have got jfc folder in which all jar files are double clickable and are executed directly. Now how Can I do that?
    Thank you very much.
    Pulin
    [email protected]

  • After closing large documents (drawings) the window closes but the process runs still in the background. I open the next document, the same procedure and after dowing this several times the RAM is full the system becoms very slow. what can i do???

    after closing large documents (drawings) the window closes but the process runs still in the background. I open the next document, the same procedure and after dowing this several times the RAM is full the system becoms very slow. what can i do???

    You can always shut it down manually via the Task Manager
    (CtrlShiftEsc)...
    On Mon, Sep 1, 2014 at 3:05 PM, frank koethen <[email protected]>

  • IMAC Yosemite FIREFOX 33.0.2 still getting blank windows after turning off hardware acceleration, they occur in the background and only seen after closing and r

    I noticed when my Firefox is minimized that I can not reopen from the Dock on my MAC. So I stop Firefox and reopen, when doing so I get a mixed number of blank windows. After closing these then Firefox behaves as desired until after a bit it all happens again. I read the Windows fix and hoped hardware acceleration would fix it but it does not.

    Hello,
    Try disabling graphics hardware acceleration. Since this feature was added to Firefox, it has gradually improved, but there still are a few glitches.
    '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]''' {web link}
    While you are in safe mode;
    Type '''about:preferences'''<Enter> in the address bar
    Select '''Advanced > General.'''
    Look for and turn off '''Use Hardware Acceleration'''.
    Poke around safe web sites. Are there any problems?
    Then restart.

  • My iMac screen keeps showing pixels of previously opened documents and Safari tabs and hour or two after closing them. The shadow of those opened documents are still there hours later after shutting down and restarting my computer. What is happening

    My iMac screen keeps showing pixels of previously opened documents and Safari tabs and hour or two after closing them.
    Even when I swipe to the dashboard the outlines are still there when I know they should not be.
    The shadow of those opened documents are still there hours later after shutting down and restarting my computer.
    What is happening and what shall I do? Thanks in advance.

    Not much to go on in your product info, but maybe this will help: iMac (27-inch): AMD Radeon 6970M Video Card Replacement Program. If not, then it's time to visit an Apple repair station.
    27" i7 iMac (Mid 2011) refurb, OS X Mavericks (10.9.4), ML & SL, G4 450 MP w/Leopard, 9.2.2

  • After closing iTunes 6 it's still hogging CPU

    I had no problems installing the latest iTunes 6 and Quicktime. It all looked as if it was running OK.
    However I noticed that each time I closed iTunes my PC (P4 2.4ghz/1024Mb RAM/XP Home SP2) was running extremely slow.
    Using Task Manager, I looked at the CPU usage - YIKES - iTunes.exe was still there hogging between 50 to 99%. I'm having to kill this process manually to sort this.
    Anyone else having this problem? Any ideas how to fix it, as it's a bit of a pain having to do this each time!!

    I've about 1100 albums in my library - I wonder if it's doing some sort of maintenance process after closing - and because of the size of the library it's taking this amount of time?
    hmmmm. i believe that itunes updates the itl file on close-down ... but it's a bit of a mystery why it would be making such a meal of it in your case.
    starting to check through odd possibilities, now. does that PC have dual cores or processors? if so, perhaps check to see if you've got a variation of this issue (it hits imports as well, so i wouldn't be entirely suprised if it was also hitting some other library-related functions):
    Otto42, "FIX - iTunes Crash while "Determining Song Volume"", 09:50pm Sep 4, 2005 CDT
    keep us posted.
    love, b

  • Why I still can't transfer PDF doc to Excel or Word formats after I had purchased annual subscription as instructed?  I had paid via Apple Store, with my iphone5s!

    Why I still can't transfer PDF doc to Excel or Word formats after I had purchased annual subscription as instructed?  I had paid via Apple Store, with my iphone5s!

    Dear Sara,
    I was been asked to subscribe to the
    service on my App after I
    had subscribed already?
    I have also try to log in to
    Acrobat.com, but nothing came up after I clipped Sign in?
    Regards,
    James Chu
    在 2014年5月12日,22:10,"Sara.Forsberg" <[email protected]> 写道:
    Why I still can't transfer PDF doc to Excel or Word formats after I had purchased annual subscription as instructed?  I had paid via Apple Store, with my iphone5s!
    created by Sara.Forsberg in Adobe ExportPDF - View the full discussion
    Hi cyberjames,
    Do you get an error message when you try to export your file? Or, are you continually asked to subscribe when you try to convert a link? If it's the latter, it could be that you just haven't signed in to the app yet. Try this:
    From the ExportPDF website, click Sign in at the upper-right corner, and log in to the service with your Adobe ID credentials. Now, when you click ExportPDF, you'll be prompted to select PDF files to export, instead of being asked to subscribe.
    If you're receiving an error message when you try to log in, let us know what it is, and we can go from there.
    Best,
    Sara
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6375306#6375306
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Adobe ExportPDF by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • OLE Excel process still open

    Hi,
    I read a excel sheet via OLE...
    everything works fine but after closing the sheet there is still a process of excel in the taskmanager, since this is not needed (anyway it doesn't matter if I kill it) I would like to know how to close this process together with the sheet
    the excel process gets terminated after I close my report but this is not enough...
    for the coding freaks in here:
    Close the file
      CALL METHOD OF E_WORK 'close'.
    Quit the file
      CALL METHOD OF E_APPL 'QUIT'.
      FREE OBJECT E_APPL.
    btw: it does also not proceed the quit command correctly if I place an ABAP command after it...

    Sebastian,
    see oss-note 124658
    and here:
    http://www.abapforum.com/forum/viewtopic.php?t=693&highlight=free+excel
    Andreas

Maybe you are looking for