Hi, how to avoid the WebBrowser in Vb.net to go at specific website, then return to specific link
Here the code I try, but got an error,expression does not produce value
Here the code
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If WebBrowser1.Navigate("http://www.youtube.com") Then
WebBrowser1.Navigate("http://www.google.com")
End If
End Sub
Thanks!