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 AMModerator
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
- Proposed As Answer by Jordan St. Godard Monday, April 16, 2012 3:57 PM
- Marked As Answer by Shanks ZenMicrosoft Contingent Staff, Moderator Tuesday, April 17, 2012 5:35 AM
-
Monday, April 16, 2012 3:48 PMThank you
-
Monday, April 16, 2012 3:59 PM
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- Edited by Cor LigthertMVP Monday, April 16, 2012 4:01 PM
- Marked As Answer by Shanks ZenMicrosoft Contingent Staff, Moderator Tuesday, April 17, 2012 5:35 AM
-
Monday, April 16, 2012 4:56 PM
'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

