After querying from database, I fill the result into dataset, suppose there are 10 columns.
And then i have to show 5 of the 10 columns into datagridview.
My way is to create a new DataTable with the 5 columns, and copy the value from the original dataset. It works, but i don't think it's a good way.
Any suggestion?
-----------------------
I am using C# for Form Application.
I prefer programic way to implement.