I'm working on an app that uses a database. I've been using a RichTextBox to show the data from a ListView_Click and when you click on the url it shows the page in the WebBrowser, that works perfectly. What I need is to display all this data in a WebBrowser. The format is HTML I would think. Would it be possible to click on the url and goto that site?
e.g.
<b>Name:</b>John Davis<br>
<b>URL:</b>www.hisurl.com
etc
The only suitable property in the WebBrowser is Navigate. I've tried posting the text into a temp.url and loading it from there but that doesn't work. I've tried WebBrowser.Print Text1.Text but that doesn't work either. As normal with additional controls there's no help.
Do anyone have any idea how you show text on a WebBrowser?




Reply With Quote