Results 1 to 9 of 9

Thread: [RESOLVED] I Need Help - Web Browser

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Jul 2009
    Posts
    150

    Resolved [RESOLVED] I Need Help - Web Browser

    hi VB
    I Have Made My Web Browser But i Want to add events for url to display in the bottom left hand corner like IE8 look at the pic below i want to embed this into my Web Browser please any1 Help Me

  2. #2
    eXtreme Programmer .paul.'s Avatar
    Join Date
    May 2007
    Location
    Chelmsford UK
    Posts
    25,464

    Re: I Need Help - Web Browser

    try this:

    vb Code:
    1. WebBrowser1.navigate(url)
    2. label1.text = "Waiting for " & url
    3. while WebBrowser1.ReadyState <> WebBrowserReadyState.complete    
    4.     Application.DoEvents()        
    5. End while
    6. label1.text = ""

  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Jul 2009
    Posts
    150

    Re: I Need Help - Web Browser

    hi got this error, how do i declare url

  4. #4
    eXtreme Programmer .paul.'s Avatar
    Join Date
    May 2007
    Location
    Chelmsford UK
    Posts
    25,464

    Re: I Need Help - Web Browser

    vb Code:
    1. 'using this webpage
    2. dim url as string = "http://www.vbforums.com/showthread.php?p=3572503#post3572503"

  5. #5

    Thread Starter
    Addicted Member
    Join Date
    Jul 2009
    Posts
    150

    Re: I Need Help - Web Browser

    it sort of works but im using web browser tabs Ie activebrowser and it wont let me navigate one page were i want to go if i want to navigate i have to open a new tab then it will navigate and it doesnt show where the url is navigateing to from the combobox just to make sure were do i stick this code ??

  6. #6
    eXtreme Programmer .paul.'s Avatar
    Join Date
    May 2007
    Location
    Chelmsford UK
    Posts
    25,464

    Re: I Need Help - Web Browser

    i've never written a tabbed webbrowser. JMcilhinney has a codebank example

  7. #7

    Thread Starter
    Addicted Member
    Join Date
    Jul 2009
    Posts
    150

    Re: I Need Help - Web Browser

    you know that code you gave me where am i supposed to stick that under mate

  8. #8
    eXtreme Programmer .paul.'s Avatar
    Join Date
    May 2007
    Location
    Chelmsford UK
    Posts
    25,464

    Re: I Need Help - Web Browser

    try your combobox selectedindexchanged event.
    read the example. it'll help.

  9. #9

    Thread Starter
    Addicted Member
    Join Date
    Jul 2009
    Posts
    150

    Re: I Need Help - Web Browser

    i Got the first TabPage to use status label like this also Tab Page Can use Mouse Over Link And Displays in StatusLabel But Doesnt work For New tab
    But Second tab Page doesnt not load Status Label as you can see


    is there anyway i can code this to work on all new tabs i open
    please help me

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