add to favorites for webbrowser

You can write a plain text file "link name.url" to favorites folder with this content:
VB.NET:
[InternetShortcut]
URL=http://www.somedomain.com/
The favorites folder path:
VB.NET:
Dim favpath As String = Environment.GetFolderPath(Environment.SpecialFolder.Favorites)
 
Back
Top