XML in a text box or someware!

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
 
K

Ken Tucker [MVP]

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top