C cEciLlE Jan 18, 2005 #1 how can i get the data from the datagridview den save it into a dataset to be use into another process. thanks
how can i get the data from the datagridview den save it into a dataset to be use into another process. thanks
M Michael Tkachev Jan 18, 2005 #2 Table t = dv.Table; object o = t.Rows[rowNumber][columnNumber]; DataSet ds = new DataSet(); ds.Tables.Add(t); Also you can work with DataSet. ds.Tables[TableNumber].Rows[rowNumber][columnNumber] = 1; Something like that.
Table t = dv.Table; object o = t.Rows[rowNumber][columnNumber]; DataSet ds = new DataSet(); ds.Tables.Add(t); Also you can work with DataSet. ds.Tables[TableNumber].Rows[rowNumber][columnNumber] = 1; Something like that.