i have some webbrowser problem in vb8

Beantwortet i have some webbrowser problem in vb8

  • Freitag, 13. April 2012 14:32
     
     

    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 

Alle Antworten

  • Montag, 16. April 2012 06:00
    Moderator
     
     Beantwortet Enthält 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

  • Montag, 16. April 2012 15:48
     
     
    Thank you
  • Montag, 16. April 2012 15:59
     
     Beantwortet

    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


  • Montag, 16. April 2012 16:56
     
      Enthält 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