Hi Fran
You have a document or template with an AutoClose or Document_Close macro. Or
an AddIn using an AutoExit macro. You need to track down where the code is
that's causing the problem. Does it only happen when you create or use a
document based on a certain template? Look in Tools>Templates and Addin
dialog. In the Global templates and add-ins section see if anything is listed
in the listbox. If it is uncheck all items and see if the problem goes away.
If it does you've obviously found the problem. If it doesn't check out your
Normal template, the offending code could well be there.
If you've made recent changes to any code or added new macros check them out
to see if they're the source of your problem. You can also try tracking down
the Normal.dot template and renaming it. When you restart Word, Word will
create a new clean Normal.dot template. To track down the location of the
Normal.dot template you are currently using run this code from the Visual
Basic editors Immediate window:
Debug.print NormalTemplate.FullName
This will display the path of the Normal.dot template.
HTH + Cheers - Peter