Home All Groups Group Topic Archive Search About

Data Grid View Column Names

Author
17 Feb 2006 9:26 PM
Joe Griffith
I'm using a Win Forms Data Grid View control in unbound mode.

When I add columns using the wizard the first item is the column name.
Everything works fine.

However, if you return to the columns collection and look at the
poperties of an individual column the name property is not in the list.
Is there a way to change (or even find) the name of a column in a data
grid view other than looking at it in the *.Designer.vb file?




*** Sent via Developersdex http://www.developersdex.com ***

Author
17 Feb 2006 10:04 PM
Chris
Joe Griffith wrote:
Show quoteHide quote
> I'm using a Win Forms Data Grid View control in unbound mode.
>
> When I add columns using the wizard the first item is the column name.
> Everything works fine.
>
> However, if you return to the columns collection and look at the
> poperties of an individual column the name property is not in the list.
> Is there a way to change (or even find) the name of a column in a data
> grid view other than looking at it in the *.Designer.vb file?
>
>
>
>
> *** Sent via Developersdex http://www.developersdex.com ***

In the columns collections "edit columns" screen there is the column
name.  It's in as "(name)"  If you sort by name it'll be at the top,
otherwise it's under the Design group.

Chris
Author
18 Feb 2006 11:34 AM
Ken Tucker [MVP]
Hi,

        Take a look at the columns headertext and datapropertyname

DataGridView1.Columns(0).HeaderText



Ken

------------------

<Joe Griffith> wrote in message
Show quoteHide quote
news:%23$MmejANGHA.3852@TK2MSFTNGP15.phx.gbl...
> I'm using a Win Forms Data Grid View control in unbound mode.
>
> When I add columns using the wizard the first item is the column name.
> Everything works fine.
>
> However, if you return to the columns collection and look at the
> poperties of an individual column the name property is not in the list.
> Is there a way to change (or even find) the name of a column in a data
> grid view other than looking at it in the *.Designer.vb file?
>
>
>
>
> *** Sent via Developersdex http://www.developersdex.com ***