J juan May 14, 2008 #1 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.
R rowe_newsgroups May 14, 2008 #2 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. Click to expand... 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]
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. Click to expand... 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]
J juan May 14, 2008 #3 Because it is easier to me to see the record just behind and its values. That's the reason. Thanks.