How can I bind the following xml structure to a DataGridView?\[code\]<Utility><Record><Client name="Company"><Paper size="A0"><Orientation type="Horz"><Width>1145</Width><Height>765</Height></Orientation><Orientation type="Vert"><Width>1145</Width><Height>815</Height></Orientation></Paper></Client></Record></Utility>\[/code\]I tried the following to no avail\[code\]var dt = ds.Tables[0];int i;for (i = 1; i < ds.Tables.Count; i++){ dt.Merge(ds.Tables);}\[/code\]Also can you recommend a good way to read this XML data?Thanks for any help