![]() |
![]() |
Application.RecentFiles
Property RecentFiles As RecentFiles
Member of Application
The RecentFiles property returns the collection of all of the files in the recent-file list of CorelDRAW.
The RecentFiles property returns a read-only value.
The following code example displays a list of all recent files, with full file names, in a message box.
Sub RecentFilesList() Dim s As String Dim rf As RecentFile s = "Recent Files" & vbCrLf For Each rf In RecentFiles s = s & vbCrLf & rf.Name & " (" & rf.FullName & ")" Next rf MsgBox s End Sub
![]() |
![]() |
![]() |
Copyright 2007 Corel Corporation. All rights reserved.