Insert row in dataset

  • Thread starter Thread starter juan
  • Start date Start date
J

juan

How can I insert a row anywhere (in the middle of the rows.count) in a DataSet?
I use one DataGridView control. Visual Basic 2005.
Thanks.
 
How can I insert a row anywhere (in the middle of the rows.count) in a DataSet?
I use one DataGridView control. Visual Basic 2005.
Thanks.

Why not add it normally to the end of the datatable and just sort the
thing when needed? Generally speaking, order of the table should not
matter. The content should just be filtered and sorted in the desired
way.

Thanks,

Seth Rowe [MVP]
 
Because it is easier to me to see the record just behind and its values.
That's the reason.
Thanks.
 
Back
Top