devxlogo

Add a file to the list of recent documents

Add a file to the list of recent documents

The Windows shell provides a function that lets you add a file to the list of the recent documents, that is the list that you can access from the Start menu:

Private Declare Function SHAddToRecentDocs Lib "shell32.dll" (ByVal dwFlags As _    Long, ByVal dwData As String) As Long

To add a file to the list of recent documents you just have to pass 2 in the first argument, which means that you’re passing a string, and pass the file name in the second argument:

SHAddToRecentDocs 2, "c:mylisting.txt"

(the value 1 in the first argument means that you’re passing a PIDL, which isn’t the case.) You can also clear the list of recent documents by passing a NULL in the second argument:

SHAddToRecentDocs 2, vbNullString

See also  How to Create and Deploy QR Codes Online: A Comprehensive Guide
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist