T
Tom
I'm asking you to look at this:
I'm doing an export from A2000 to Excel2007 from VBA in Access2000
using
an app as Excel.Application object
set app= new Excel.Application
Everything goes fine but I cant easily see the fruits of my work
because after A2000 VBA code is done, it seems that the invisible
Excel process, initiated
by A2000 VBA code is still running and to open Excel I first have to
manually kill the Excel
process in Windows Task Manager.
So my simple question is:
How to release the app as Excel.Application object programatically
from A2000 VBA.
I tried:
set app=nothing or
app.quit
but none of these is working.
Thanks
Tom
I'm doing an export from A2000 to Excel2007 from VBA in Access2000
using
an app as Excel.Application object
set app= new Excel.Application
Everything goes fine but I cant easily see the fruits of my work
because after A2000 VBA code is done, it seems that the invisible
Excel process, initiated
by A2000 VBA code is still running and to open Excel I first have to
manually kill the Excel
process in Windows Task Manager.
So my simple question is:
How to release the app as Excel.Application object programatically
from A2000 VBA.
I tried:
set app=nothing or
app.quit
but none of these is working.
Thanks
Tom