When I create an instance of Excel using VBA within Access, then close Excel (using the quit method), it leaves the instance running (visible in the task manager). If I close Access, the instance disappears from the Task Manager.
Dim objXLApp As Excel.Application
Set objXLApp = CreateObject("Excel.Application")
objXLApp.Quit
Set objXLApp = Nothing
How can I remove the instance of Excel while still in Access? Thanks for any help.
BTW I have searched the interenet high and low, have found this to be a common problem, but none of the responses worked for me.
Dim objXLApp As Excel.Application
Set objXLApp = CreateObject("Excel.Application")
objXLApp.Quit
Set objXLApp = Nothing
How can I remove the instance of Excel while still in Access? Thanks for any help.
BTW I have searched the interenet high and low, have found this to be a common problem, but none of the responses worked for me.