The classic: Favorites on a web browser.
Right, I want Favorites/Bookmarks on a web browser.
I want it to list favorites in a listbox (if possible) and when you click on a favorite, it will take you to that page.
I also want it to add bookmarks on add bookmarks button click
I also looked at source of other programs and couldn't find what I'm looking for.
I using TabControl1 by the way.
I would like to not use IE favorites, but if I have to, it's OK.
Please help!
Re: The classic: Favorites on a web browser.
TabControl is for the browser tabs.
Anyone can help me out?
Re: The classic: Favorites on a web browser.
The web browser control is by default IE, and you'd have to load a whole new cache.
http://www.java2s.com/Code/VB/Window...Collection.htm
I'm pretty sure this is what you're looking for, this displays favorites from favorites folder.
I havent studied this code very hard, but under ListBox.IndexChanged (double click the list box) add
Dim i As Integer = ListBox1.SelectedIndex
WebBrowser1.Navigate(ListBox1.Items(i).ToString)