Possible Duplicate:
How to read data from xml file and display it over the text box in delphi language
I am new to delphi ,and here i have an xml file called test.xml that looks like this
<data>
<vehicle>
<type>Car</type>
<model>2005</model>
<number>1568</number>
</vehicle>
<vehicle>
<type>Car</type>
<model>2009</model>
<number>1598</number>
</vehicle>
</data>
Here i want to display all the data in delphi while loading the form.Please help me by giving the complete code.Thanks in advance.