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