Results 1 to 3 of 3

Thread: [RESOLVED] VS2008 - What is system.URI for webbrowser.navigate?

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Oct 2000
    Posts
    1,463

    Resolved [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!!

  2. #2
    Frenzied Member
    Join Date
    Oct 2005
    Posts
    1,286

    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"))
    Pete Vickers
    MVP - Device Application Development
    http://www.gui-innovations.com http://mobileworld.appamundi.com/blogs/

  3. #3

    Thread Starter
    Frenzied Member
    Join Date
    Oct 2000
    Posts
    1,463

    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
  •  



Click Here to Expand Forum to Full Width