views:

83

answers:

1

I have VB6 application that uses Navigate2 method of WebBrowser control. .Net version of WebBrowser have 8 versions of Navigate method.

Which method is mapping functionality of Navigate2 of the code below:

Dim url
url = "www.apple.com"
WB.Navigate2 url
+2  A: 

You can call the overload that takes a string, like this:

webBrowser.Navigate("http://apple.com")
SLaks
Does it means that .net version of the control is using Navigate2 by default?
volody
Yes, it is. I checked.
SLaks