There must be an easyer way to change the column headings of a datagrid control than going through the columns collection
Has anyone any ideas please )
Dim f As Column
For Each f In DataGridPeople.Columns
Select Case f.Caption
Case "FirstName"
f.Caption = "First Name"
Case "LastName"
f.Caption = "Last Name"
end select
next i
Thanks for your thoughts and comments
Todd
Has anyone any ideas please )
Dim f As Column
For Each f In DataGridPeople.Columns
Select Case f.Caption
Case "FirstName"
f.Caption = "First Name"
Case "LastName"
f.Caption = "Last Name"
end select
next i
Thanks for your thoughts and comments
Todd