K
Kelvin
Dear All,
Please help.
Same as subject !!!
Please help.
Same as subject !!!
Kelvin said:Dear All,
Please help.
Same as subject !!!
Lowell Heddings said:Kelvin said:Dear All,
Please help.
Same as subject !!!
Inserting a new row is the same whether you are looping or not.
DataTable dt = new DataTable();
DataRow row = dt.NewRow();
row["columnname"] = "whatever";
dt.Rows.Add(row);
dt.AcceptChanges();
If you are looking for something more specific to your situation, then you
need to post some code.
Lowell