c# is it possible to show a live webpage in a windows form application?

c#

Solution

Yes, you can do it with `WebBrowser` control. Place it to your form and call `Navigate` method:

browser.Navigate("http://www.google.com");

Problem

I was wondering if its possible to show a webpage inside of a windows form application. I'm trying to create a livechat client,but it seems to hard for a c# beginner,since I have to code the server side also. So I was wondering if it's possible to show a php page containing the chat client into a window of my application? Thanks in advance for any replay!

Original source

Related problems