0
Reply

How to display a dataRow Array in a datagridview control ?

Ask a question
Waqas Ali

Waqas Ali

12y
1.4k
1
Hello,
This is my code to retrieve records from a database into a dataRow array.


returnedRows = bookDS.Tables["book"].Select(comboBy.Text + "=" + "'" + searchFor + "'", "BookID ASC");

Now, I want to display these Rows in a datagridview control. How do I do that ?