|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Data Grid View Column NamesI'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 *** Joe Griffith wrote:
Show quoteHide quote > I'm using a Win Forms Data Grid View control in unbound mode. In the columns collections "edit columns" screen there is the column > > 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 *** 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 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 *** |
|||||||||||||||||||||||