Opening facebook in a panel of winforms

73 views Asked by At

I am in need to open facebook(whatsapp,skype etc) with in a panel. please suggest something to achieve the same. I working on windows 7. If facebook is not possible then please suggest with whatever the task is possible whether with facebook messenger,whatsapp (site or app),skype or any other social networking site or app.

1

There are 1 answers

4
Tushar Narang On

try this

Process.Start("http://www.google.com");

or

If the point is to open a website in your application, you will have to use WebBrowser control. Put WebBrowser control on your form, and add this code to the button which is responsible for opening the site:

webBrowser1.Navigate("www.google.com");