B
BuzzLight
Hi I saw the help file for the DataGridColumnStyles object but after reading the overview of it I didnt understand anything... its way too complex for a beginnner like me Is it possible for you to give me a simple explanation.. and how I could use that object for what I want?
For people reading this first time : What I want is an easy way of creating rows and cols just like on a flexigrid in vb6.
Thanks
easily... but in .net all I see is one DataGrid.
dynamically... this would mean I add them to the table then I had to call
some sort of refresh on the datagrid, this makes the longwindedness seem
more clear.
For people reading this first time : What I want is an easy way of creating rows and cols just like on a flexigrid in vb6.
Thanks
add rows, columns .. change their width, height, header captions etc veryBuzzLight said:Iam very new to .net, in vb6 there was the flexigrid component, you could
easily... but in .net all I see is one DataGrid.
it does not give me any options to add columns or rows!I want to add columns and rows to it, change their header captions etc but
must be a better way of doing this.. I mean what if I wanted to add colsI have found one way of adding columns :-
Dim table as new DataTable
table.columns.add("C1")
DataGrid.datasource = table
And that adds the column... but surely this is an unefficent way? there
dynamically... this would mean I add them to the table then I had to call
some sort of refresh on the datagrid, this makes the longwindedness seem
more clear.