Hello,
I'm working with VB.net 2005 and I'm using Datagridview. What I would like to do is to add a complete column (not only the header!). I know its possible to do the following:
(Found this in Documentation)
But can I do this with Colums too?
Sorry if this is a stupid question...
Thanks in Advance,
Twister
I'm working with VB.net 2005 and I'm using Datagridview. What I would like to do is to add a complete column (not only the header!). I know its possible to do the following:
Code:
Dim row0 As String() = {"6/30/1992", "3", "Dress", "P J Harvey", "Dry"}
With Me.dataGridView1.Rows
.Add(row0)
End With
But can I do this with Colums too?
Sorry if this is a stupid question...
Thanks in Advance,
Twister