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

Beauty

Thank You!

Later Cal.

On Tue, 09 Sep 2003 23:24:46 -0600, "J.E. McGimpsey"
wrote:

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