IE Favorites <-> Netscape bookmark converter
Converts IE Favorites to Netscape Bookmarks and vice-versa in just 9 lines of code
Inputs
Just the Netscape bookmark.htm file path
Assumes
To use this code, make sure you have an Internet Control component in your project. Then its simple - call the functions with the path of your netscape bookmark file.
Side Effects
The export operation will not merge with the Netscape file - it will overwrite it.
Rate IE Favorites <-> Netscape bookmark converter
(3(3 Vote))
Dim ShellUIHelper1 As ShellUIHelper
Sub ImportFavorites(NetscapePath As String)
Set ShellUIHelper1 = New ShellUIHelper
ShellUIHelper1.ImportExportFavorites True, NetscapePath
End Sub
Sub ExportFavorites(NetscapePath As String)
Set ShellUIHelper1 = New ShellUIHelper
ShellUIHelper1.ImportExportFavorites False, NetscapePath
End Sub
IE Favorites <-> Netscape bookmark converter Comments
No comments yet — be the first to post one!
Post a Comment