View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
J.E. McGimpsey J.E. McGimpsey is offline
external usenet poster
 
Posts: 493
Default Clearing the 'Recently used file list'

One way:

Public Sub KillRUList()
Dim rFile As RecentFile
For Each rFile In Application.RecentFiles
rFile.Delete
Next rFile
End Sub

In article ,
flashpoint wrote:

is it possible to 'clear' the recently used file list using vb