OMG. How the hell do I just add one frekkin item to the datagrid? In vb6 I had everything covered and now in .net i just spent an hour trying to add "hi" to any colum in any row in the datagrid. Im LOST.
I think I'd use a flex grid to do that. The datagrid "Displays ADO.NET data in a scrollable grid."
The flex grid was always what we used for regular text.
barant You need to provide/create a datasource for the datagrid. The datasource is typically a dataset (containing datatables), but can also be a datatable or a dataview.
In order to change what you see in the grid you need to change the underlying datasource. You can add rows to the view by adding rows to the datatable (e.g. using the .rows.add method).
Good luck
Sunaj
'The gap between theory and practice is not as wide in theory as it is in practice'
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.