Dear Friends;
I am developing a small program using C#.net. My form has number of text boxes. I want add data which are in text boxes to data grid on my form. How to do it ?
Kelum Kanchana
Loading
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.
LisaPosted Apr 7, 2009, 8:52 AM
you can store the textbox values into a datatable or a dataset and then assign the datatable to a datagrid.
DataTable dt = new DataTable();
dt.add("values")
then assign the datatable to the datagrid view.
Thanks,
Lisa
kelum kanchanaPosted Apr 6, 2009, 3:05 AM
Thanks,
kelum kanchanaPosted Apr 3, 2009, 2:24 AM
Kelum
StefanPosted Apr 1, 2009, 5:39 PM