.net cf - launch explorer programmatically

前端 未结 2 1788
滥情空心
滥情空心 2021-01-22 19:08

I am trying to launch explorer programmatically from my .Net CF Window application. But its throwing win32 exception. I have used same kind of code in desktop .Net version, and

2条回答
  •  一个人的身影
    2021-01-22 19:37

    In order to kick off a web browser navigation to a URL, I have always directly set the argument of the Start method to the url itself. Please try the following to see if it helps in .NET CF"

    Process.Start("http://www.yahoo.com", null);

    i.e.

    Process.Start([url_variable], null);

提交回复
热议问题