Hi Andrew,
You are a little bit confusing.
> Coming from VB, I find the changes needed to manipulate a datagrid are
much
> more taxing than previously.
Do you want to do it with VB.net code or with C# code because you are
talking about that also?
However in general, there are lots of methods to manipulate a datagrid. For
the columnwidth and things like that I think that the best you can do is
look at the datgridstyles and datagridcolumnstyles on msdn.microsoft.com
http://msdn.microsoft.com/library/de...ridcontrol.asp
For manipulating rows, you can look at the underlaying layers. Mostly the
dataview or basicly the datatable. However some people like to do the
manipulating from rows using the binding and currency manager. I think that
is a matter of preference (I like the most the dataview).
One of the nicest thing from dotNet is that there is not one best method,
but you can choose the best method for your problem or your way of thinking.
I hope this helps?
Cor