Results 1 to 3 of 3

Thread: The classic: Favorites on a web browser.

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Dec 2010
    Posts
    89

    Exclamation 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!
    If my post was helpful to you, then use Rate this Post.

    And if your problem is SOLVED, then please Mark the Thread as RESOLVED (from the pull down menu - Thread Tools)

    Handy VB.NET Links: Language Translations

  2. #2

    Thread Starter
    Lively Member
    Join Date
    Dec 2010
    Posts
    89

    Re: The classic: Favorites on a web browser.

    TabControl is for the browser tabs.
    Anyone can help me out?
    If my post was helpful to you, then use Rate this Post.

    And if your problem is SOLVED, then please Mark the Thread as RESOLVED (from the pull down menu - Thread Tools)

    Handy VB.NET Links: Language Translations

  3. #3
    Lively Member
    Join Date
    Aug 2010
    Location
    Look to the right... yep, there i am.
    Posts
    111

    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)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width