Skip navigation

Why Doesn't the Document_Close Event Handler Run?

A Word document saved directly in a public folder or attached to a post in a folder doesn't run its Document_Close procedure when the save occurs. How can I make that macro work?

Technically, Document_Close is an event handler, not a macro. A macro is a Public Sub procedure in Visual Basic for Applications (VBA) and has no arguments. In your scenario, there's a big difference between the two. As long as the security settings in Microsoft Word (Tools, Macro, Security) are set to allow macros to run, true macros will work just fine. You can invoke them with the Alt+F8 command or add them to the toolbar. But as far as I can tell, event handlers don't fire in documents that are stored in Outlook or Exchange folders, probably as a security measure.

TAGS: Security
Hide comments

Comments

  • Allowed HTML tags: <em> <strong> <blockquote> <br> <p>

Plain text

  • No HTML tags allowed.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs break automatically.
Publish