Any of u please help to fill my DataGridView.
It is Windows application using C#.
I need to fill my DataGridView from an XML depends on particular search criteria.
i did
DataSet.ReadXml(FileStream);
DataGridView.DataSource = DataSet;
In that manner how can i fill that grid in windows application.
i can't find DataBind() here.