Retriving and storing data from tally

marchnet

New member
Joined
Nov 6, 2007
Messages
1
Programming Experience
1-3
Hello everyone,

I am using rtslink to retrive data from tally and it's retrived in XML format and is stored as a reponse.log file.

Now i would like use the data stored in the reponse.log file to be dispalyed in list box could anyone please offer some help.

Regards
 
dataset.ReadXml will read and parse the XML. You can then access it like:

ds.Tables("whatevername").Rows(0).Item("column name")

Look up DataSet.ReadXml
 
Back
Top