|
-
Jun 30th, 2009, 12:40 PM
#1
Thread Starter
Frenzied Member
[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!!
-
Jul 1st, 2009, 12:38 AM
#2
Frenzied Member
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"))
-
Jul 1st, 2009, 07:16 AM
#3
Thread Starter
Frenzied Member
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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|