How can I create a DataSet that is manually filled? ie. fill through the code or by user input. I want to know the required steps if I need to create a DataTa
DataSet
DataTa
To add rows to existing DataTable in Dataset:
DataRow drPartMtl = DSPartMtl.Tables[0].NewRow(); drPartMtl["Group"] = "Group"; drPartMtl["BOMPart"] = "BOMPart"; DSPartMtl.Tables[0].Rows.Add(drPartMtl);