Changing a HTML string to a web page in visual basic 2010?

the smart one

New member
I am making a web browser in visual basic 2010 (without the I.E engine). How can I change the 'page source' to an interactive website?
I already have the page source in a richtextbox
I am not to interested with the java script and all that at the moment. I only want the basic HTML.
 
As far as I know, the WebBrowser control that comes with visual studio is the only control that can display HTML. But, of course, that's built on top of the IE engine.
It's not a trivial task to render HTML, so it isn't too surprising that there isn't a control to do this that isn't just a big wrapper on an existing browser engine.
 
Back
Top