[RESOLVED] VS2008 - What is system.URI for webbrowser.navigate?
Hi,
I just started looking into mobile programming with VS2008 and VB. When I added a webbrowser control to the screen and then clicked a button to code for navigating, the parameter for the url is uri. What is this? I thought I could put a string there to pass as the argument but it wants system.uri.
Thanks!!
Re: VS2008 - What is system.URI for webbrowser.navigate?
hi,
there is an article on using the control here but basically you can do:-
WebBrowser1.Navigate("http://www.google.com")
or
WebBrowser1.Navigate(New Uri("http://www.google.com"))
Re: VS2008 - What is system.URI for webbrowser.navigate?
Thanks. The first example does not work because it will not accept string but the second does.