G
Geoff Budd
I use a macro to clear the recent documents list in Word 2007 as follows:
Sub ClearMRU()
' Clears the list of most recently used documents
Dim ListSize
Application.DisplayRecentFiles = True
ListSize = Application.RecentFiles.Maximum
Application.RecentFiles.Maximum = 0
Application.RecentFiles.Maximum = ListSize
End Sub
However, what I would really like to do is only clear the list of documents
that have not been "pinned". Does anyone know a way of clearing the list but
leaving the "pinned" ones on the list?
Many thanks,
Geoff
Sub ClearMRU()
' Clears the list of most recently used documents
Dim ListSize
Application.DisplayRecentFiles = True
ListSize = Application.RecentFiles.Maximum
Application.RecentFiles.Maximum = 0
Application.RecentFiles.Maximum = ListSize
End Sub
However, what I would really like to do is only clear the list of documents
that have not been "pinned". Does anyone know a way of clearing the list but
leaving the "pinned" ones on the list?
Many thanks,
Geoff