displying of latest data from an XML on the list control. [modified]
-
I have a task where I am supposed to display the data(Clientname, id , year, license) on a list control from an XML file however when a new data is appended to the XML file with the same Clientname. I want the latest (i.e. recently appended data)should display. Please let me know which function is required to perform this??? Thanks in advance.
modified on Wednesday, February 4, 2009 3:00 AM
-
I have a task where I am supposed to display the data(Clientname, id , year, license) on a list control from an XML file however when a new data is appended to the XML file with the same Clientname. I want the latest (i.e. recently appended data)should display. Please let me know which function is required to perform this??? Thanks in advance.
modified on Wednesday, February 4, 2009 3:00 AM
- Detecting a change to a file - you want to use directory change notifications[^].
- Displaying the last item in a list in an XML file? Kind of depends on the schema of the XML file, but you could use XPath to find the last item, or iterate through the file - there are a lot of techniques - I'd advise you to work out how to use the XML library you're using to do this.