2010-04-13 115 views
0

我使用的web浏览器组件在我的应用程序的Windows Mobile手机的窗户...... 我设定的网址为"www.google.com"但它表明使用Web浏览器

"page is unavailable,u need to adjust browser settings!!! cannot find server or DNS error"

我需要做任何形式的编码从我结束 为我设置的URL从Web浏览器组件的属性框

回答

0

我发现answser:

private void webBrowser1_GotFocus(object sender, EventArgs e) 
{ 
    webBrowser1.Url = new Uri("http://www.google.com"); 
    webBrowser1.Navigate(new Uri("http://www.google.com")); 
} 

当您第一次与WMDC同步您的应用程序时,您必须继续建立合作伙伴关系。

Check the checkbox for allow the connections and choose DMA 

而且选择:

The computer is connected to "The Internet" 

和你做!

但我仍然无法适应网站的屏幕尺寸。任何帮助表示赞赏