tags:

views:

26

answers:

2

I have a some of html strings that my application generates. Each html 'snippet' is stored as a collection of strings. I need to display some of these according to the user query. What is the usual way to display html stylized texts in Windows Forms.

A: 

You could use a "web browser" component

thelost
+3  A: 

You can embed IE in Windows Forms with the WebBrowserControl. You might be able to stream the text in, otherwise you might have to write to a file and point the control to that file.

Dave Swersky
Thanks! Did it by setting DocumentStream property of WebBrowser component.
iJeeves