I am using VBA with Word 2003. I have a procedure which creates new documents, then opens them for programmatic editing. It then saves and closes the document.
Even though I have the AddToRecentFiles property set to false, the new documents still get added to my recent files list. Has anyone encountered this problem before and found a workaround?
[purple]— Artificial intelligence is no match for natural stupidity.[/purple]
Even though I have the AddToRecentFiles property set to false, the new documents still get added to my recent files list. Has anyone encountered this problem before and found a workaround?
Code:
Set m_Doc = Documents.Open(FileName:=m_strFileLocation & strDocumentName, _
AddToRecentFiles:=False, Visible:=False)
[purple]— Artificial intelligence is no match for natural stupidity.[/purple]