This gets the path to documents, then just add a file here to add to start-->documents.
VB Code:
Option Explicit
Private Declare Function SHGetFolderPath Lib "shfolder" Alias "SHGetFolderPathA" (ByVal hwndOwner As Long, ByVal nFolder As Long, ByVal hToken As Long, ByVal dwFlags As Long, ByVal pszPath As String) As Long
Private Const CSIDL_RECENT As Long = &H8 ' <user name>\Recent
Private Sub Command1_Click()
MsgBox RetrievePath(CSIDL_RECENT)
End Sub
Private Function RetrievePath(ByVal SpecialFolder$)
Dim Path$
Path = String(260, 0)
'Path must have a length, and 260 is large enough to contain any path
SHGetFolderPath 0, SpecialFolder, 0, 0, Path
RetrievePath = Path
'The path variable will now hold the path to the history folder for the current user.
End Function