XML in a text box or someware!

  • Thread starter Thread starter Adrian
  • Start date Start date
A

Adrian

Hi
I have a vbdotnet app that gets some XML and writes it to txtbox
I would like to lay it out nicely (even with colour if possible)

Is their any example code how to do this?

thanks
 
Hi,

Here is an example reads some xml in from my website's rss feed
and displays it in a richtextbox.

Dim ds As New DataSet

Dim filename As String =
"http://www.windowsformsdatagridhelp.com/newsfeed.aspx"

ds.ReadXml(filename)

RichTextBox1.Text = ds.GetXml



Ken

-------------------

Hi
I have a vbdotnet app that gets some XML and writes it to txtbox
I would like to lay it out nicely (even with colour if possible)

Is their any example code how to do this?

thanks
 
Back
Top