Showing a record Set on WIndows C# form
C#
2
Posts
2
Posters
0
Views
1
Watching
-
Hi Guys, I have a set of rows/records retrieved from a database as a result of a SELECT query . I need to show the returned records on a windows form. whats the easiest and fastest way to do it. I am using C# and windows's form as an application. Thanks,.
Ahmed
-
Hi Guys, I have a set of rows/records retrieved from a database as a result of a SELECT query . I need to show the returned records on a windows form. whats the easiest and fastest way to do it. I am using C# and windows's form as an application. Thanks,.
Ahmed
The easiest and fastest way is to fill a
DataTable
with your data and bind that to theDataSource
property of aDataGridView
Control.