API Documentation > CorelDRAW > 2025-v26 > Application > IVGApplication
Application.RecentFiles property
Gets the collection of all files in the Recent File list
Syntax:
Property Get RecentFiles() As RecentFiles
Remarks:
The RecentFiles property returns the collection of all files in the recent-file list of CorelDRAW.
Examples:
The following VBA 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