tags:

views:

42

answers:

1

hey i used web browser component in my app for windows mobile... i set the url as "www.google.com" but it shows

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

do i need to do any sort of coding from my end as i set the url from the property box of web browser component

A: 

hey i got the ans its so simple :::

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

as well as when u sync ur app first time with WMDC you must go ahead with setup partnership.

Check the checkbox for allow the connections and choose DMA

Also select :

The computer is connected to "The Internet"

and u r done!!!

but i cant fit the website as per the screen size,how to do that is still a mystery!!!!

any help is appreciated

SWATI