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.
+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
2010-03-11 21:01:26
Thanks! Did it by setting DocumentStream property of WebBrowser component.
iJeeves
2010-03-11 21:16:47