How to create dynamic datatable?
I would like to create datatables dynamically in windows forms. can you please tell me...
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Hemant SrivastavaPosted Jan 3, 2013, 10:31 AM
http://www.c-sharpcorner.com/UploadFile/0f68f2/querying-a-data-table-using-select-method-and-lambda-express/
Hope , it will help you.
Gaurav GuptaPosted Jan 3, 2013, 5:35 AM
DataRow dr;
dr=dt.NewRow();
dt.Rows.Add(dr);dr=dt.NewRow();
dr=dt.NewRow();
dt.Rows.Add(dr);
Dorababu MekaPosted Jan 3, 2013, 3:13 AM