
September 26th, 2003, 12:52 PM
|
|
Junior Member
|
|
Join Date: Aug 2003
Posts: 2
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
Dynamically output data from XML to Winform textboxes
Hi,
I have an application that generates data in realtime into a very large XML file. Now, i have a WinForm that is supposed to view the data generated in realtime. How do i code, in C#, to enable the textboxes in WinForm to constantly grab the latest figures that is generated in the XML file?
The structure of the xml file is like this...
<?xml version="1.0"?>
<Output>
<DataSet>
<voltage></voltage>
<current></current>
<power></power>
</DataSet>
....
</Output>
In this case, I have 3 textboxes in my Winform that are required to extract and display the numbers from the XML file(while the XML file is still generating data).
Please gimme a hand at this. I'll be eternally grateful for your help!
Thanks!
|