displaying XML in a winform datagrid

dear sirs, how can i show xml data ( a basic ) in a winform datagrid. or actually how can i bind xml to a datagrid. your prompt attendance will be very appreciated. best, robert.

1 Reply

AD Administrator Syncfusion Team April 16, 2004 07:11 AM UTC

Hi, You can try the following C# code: DataSet dataset = new DataSet(); dataset.ReadXml("xmlfilename"); datagrid.setDataBinding(dataset,"TableName"); Thanks, kiran > > dear sirs, > > how can i show xml data ( a basic ) in a winform datagrid. > > or actually how can i bind xml to a datagrid. > > your prompt attendance will be very appreciated. > > best, robert.

Loader.
Up arrow icon