S satyaprakash47 Aug 18, 2004 #1 Hello How can we remove a specific file from the window recent file list through vb.Net.
S Shiva Aug 18, 2004 #2 Try deleting <file name>.lnk from C:\Documents and Settings\<your user name>\Recent Environment.GetFolderPath(Environment.SpecialFolder.Recent) will give the above path. in message Hello How can we remove a specific file from the window recent file list through vb.Net.
Try deleting <file name>.lnk from C:\Documents and Settings\<your user name>\Recent Environment.GetFolderPath(Environment.SpecialFolder.Recent) will give the above path. in message Hello How can we remove a specific file from the window recent file list through vb.Net.
H Herfried K. Wagner [MVP] Aug 18, 2004 #3 * (e-mail address removed)-spam.invalid (satyaprakash47) scripsit: How can we remove a specific file from the window recent file list through vb.Net. Click to expand... Untested: \\\ System.IO.File.Delete(System.IO.Path.Combine(System.Environment.GetFolderPath(Environment.SpecialFolder.Recent), "foo.lnk")) ///
* (e-mail address removed)-spam.invalid (satyaprakash47) scripsit: How can we remove a specific file from the window recent file list through vb.Net. Click to expand... Untested: \\\ System.IO.File.Delete(System.IO.Path.Combine(System.Environment.GetFolderPath(Environment.SpecialFolder.Recent), "foo.lnk")) ///