How to Add Column to untyped dataset?

Drache

Active member
Joined
Apr 8, 2006
Messages
26
Programming Experience
Beginner
I have an untyped dataset(DataSet1) into which I read a XML file

DataSet1.ReadXml(Fpath1)

XML FILE
<?xml version="1.0" encoding="UTF-8"?>
<base id="fr1" base="a" date="28/04/2006">
<units>
<user>Brian</user>
<title>Base 3</title>
<start>14032006</start>
<end>04052006</end>
<info>A4</info>
</units>
<units>
<user>Sarah</user>
<title>Base 3</title>
<start>22042006</start>
<end>18052006</end>
<info>A3</info>
</units>
</base>
What I need to do is add a column to DataSet1 and fill it with a string variable.

I am a novice with datasets in vb.net, so any help would be appriciated.

Thankyou.


Thankyou for looking.

I have found a solution to my problem elsewhere. There does not appear to be an active delete thread option.
 
Last edited:
Back
Top