Answered i have some webbrowser problem in vb8

  • Friday, April 13, 2012 2:32 PM
     
     

    hello 

    if i webbrowser1.navigate "http://google.com" when this page was loaded then automatically navigate to facebook.com 

    i try webbrowser document completed event but still not working  anybody tell me Thanks 

All Replies

  • Monday, April 16, 2012 6:00 AM
    Moderator
     
     Answered Has Code

    Hi Spiderman14444,

    Welcome to the MSDN forum.

    Would you please provide us codes in DocumentCompleted event? I used the follow codes and it worked:

            'if the current url is not facebook then redirecet to
            If Me.WebBrowser1.Url.ToString <> "http://www.facebook.com/" Then
                WebBrowser1.Navigate("www.facebook.com")
                Console.WriteLine(Me.WebBrowser1.Url.ToString)
            End If


    Thank in advance!

    Best regards,


    Shanks Zen
    MSDN Community Support | Feedback to us

  • Monday, April 16, 2012 3:48 PM
     
     
    Thank you
  • Monday, April 16, 2012 3:59 PM
     
     Answered

    Spiderman, 

    I see you all the time writing VB8, are you sure that it is the VB from VB2005?

    The one from VB2008 is VB9 and coincidentally is the one from VB2010 VB10.

    However, as answer, in the Document Complete event you have to check if the IsReady = true

    A webpage mostly contains more documents and if the last one is loaded the status IsReady = true


    Success
    Cor


  • Monday, April 16, 2012 4:56 PM
     
      Has Code
    'if the current url is not facebook then redirecet to
            If Me.WebBrowser1.Url.ToString <> "http://www.facebook.com/" Then
                WebBrowser1.Navigate("www.facebook.com")
                Console.WriteLine(Me.WebBrowser1.Url.ToString)
            End If
    this code is working thanks