Webpage Link

I was wondering how to configure a button in my application to access a webpage. I have found examples sugguesting to use a Process.Start command. I followed the instructions and I get the following error

Value of type 'String' cannot be converted to 'System.Diagnostics.ProcessStartInfo'

I am programming in VS2005 Visual Basic, WM 5.0

thanks for the help


Answer this question

Webpage Link

  • Bill Henning

    Try following. hope this helps you

    Process.Start("IExplore.exe", "www.google.com");

    OR

    ProcessStartInfo startInfo = new ProcessStartInfo("IExplore.exe");
    startInfo.WindowStyle = ProcessWindowStyle.Maximized;
    Process.Start(startInfo);
    startInfo.Arguments = www.google.com;
    Process.Start(startInfo);




  • takkyangel

    Process.Start("IExplore.exe", "www.google.com")

    That seems to work, thank you!

    Do you know how to set the emulator up to connect to the internet

  • ihendry01

    Why don't you ask that is emulator's forum Also read this.



  • Webpage Link