Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Odd phenomenon started six to nine months ago.

Many of my "clients" (non-technical co-workers) create/edit documents for other clients.

Part of my job is to minimize things that make them hate technology :-)

One of those things is puzzling me. Some of the Word documents, when I open them, warn me that they contain macros. But when I launch the VBA editor, there are no macros--not even any empty modules.

What's up with that?

share|improve this question
It sounds like you've already discounted this, but just to note that even if a document doesn't itself contain macros, it may be linked ('attached' in Word terminology) to a template that does; eg if the document is a child of that template. This will trigger a warning. – e100 Aug 19 '10 at 9:15

6 Answers

up vote 1 down vote accepted

This happens sometimes when a macro used to be present, but has been removed. The best way to clear this is to save the document as a .RTF or .docx and then save the file again as a .doc.

share|improve this answer
Why the down vote? – Irwin M. Fletcher Jan 15 '10 at 16:30
I didn't down-vote, but converting to RTF and back loses a lot of information in the document. – Joe May 20 '10 at 9:19
Not worried about losing formatting. I was trying to protect those who can only format with space bar and return key. Other users don't like the prompt but they don't panic. – WGroleau Mar 27 '12 at 22:39

Hava you actually checked tools->macros?

Also it may be a warning that can be disabled from within word.

The company you work for, do they mind changing macro security level to med / low? That way you can avoid this message entirely.

share|improve this answer
2  
Those warnings are there for a reason, simply disabling the message is a bad idea. – Irwin M. Fletcher Jan 15 '10 at 14:58
Irwin you must of not read my comment. I said the company he works for...we run on med security level...it all depends...So I am not advising him to do that I am asking him if that is a possibility. You must of misread my post... – JonH Jan 15 '10 at 16:03

I've seen that from time to time. Check there really are no objects by going to View>Project Explorer (Ctrl+R) in the VBE first.

share|improve this answer

I believe this warning appears not just for macros, but for other customisations such as key bindings and toolbars.

share|improve this answer

Folks, I did say I verified there are no macros. The latest doc does have some "form-like" things on it--apparently the author cut and pasted some text fields from a web form as illustrations. But the VB editor doesn't show them. However, when the document is open, the little tiny "design mode" widget is present. (I didn't see it at first because it floats and Word decided to put it off on the other monitor instead of in front of the doc window.)

I tried ->RTF->Doc, and it did get rid of the phantom macros. So THANKS, Irwin!

Setting the security settings to medium will not get rid of the warning. That's where I always run. That setting, by the way, is a per-user setting, not s document setting, so to get rid of it, I'd have to show all seven thousand users how to set to LOW, meaning execute all macros on any document without question. Since a good number of them ignore policy against downloading non-work-related stuff, I wouldn't do that if I could. (Some of our "XYZ doesn't work!" calls result from unauthorized installations of AIM, Yahoo toolbar, Google apps, etc., etc.)

share|improve this answer

I managed to remove the "invisible macros" from a document with these steps:

  1. Open the document in Word (I'm using Word 2003)
  2. Press Alt+F8 to bring up the 'Macros' dialog
  3. In the "Macros in:" dropdown list find and select the name of the current document you have open.
  4. Click the 'Create' button, immediately close the VB editor window that appears.
  5. Press Alt+F8 again to bring the Macros window back up.
  6. Click the 'Edit' button, on the resulting VB editor window, look in the Project Explorer pane. Find the document you currently have open in the tree, expand it with the + button.
  7. In the "Modules" folder find the macro you just created in step 4. (In my case it is named "NewMacros") Right click the macro and select "Remove ...", click 'No' on the dialog popup.
  8. In the VB editor click the save button. Close the editor.
  9. Back in Word click the save button. Close Word.
  10. Now when you reopen the document you should no longer recieve a warning about macros!
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.