Visio process still running after Exit

B

barbie.gee

Recently a user began complaining that there were times his computer
would begin to respond very very slowly. I did all the usual; disk
cleanup, defrag, spyware/adware check, virus check, trimmed up Startup
services.

Today he called and said "it's happening again". I had him go to Task
Manager.
CPU pegged at 100%. After sorting, he said it's visio.exe that's using
all the CPU. "Are you running Visio now?" "NO. I was earlier this
morning, but I exited that awhile ago." I had him end the process and
the computer performance returned to normal.

The computer he's using is barely a few years old, has 512Mb RAM. He's
running XP Professional SP2, the full Office 2003 suite, and I believe
his Visio version is 2003 as well.

Why is the Visio process still running in the background long after
"quitting" the actual application?
Help?
 
A

Al Edlund

sometimes (my observations not necessarily supported) addons may have a
problem and when visio is terminated, the addon keeps an image running in
memory. I'd ask the user what were they using visio for to see if it might
be an addon problem.
al
 
C

Christoph Dümmen

This normally happens when code uses Object references which are not
terminated correctly.
Check the code for 'Set ZZZ = nothing'

Sub Test()
dim xl as Excel.Application
set xl = new Exel.Application
...
set xl = nothing 'This terminates the object correctly
End sub

Chris
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top