BW
Brian Wright
June 17, 2005 04:10 PM UTC
Okay, I am having an additional problem.
I am setting all of the column header labels using GridColumnDescriptor objects (.HeaderText property) in the TableDescriptor.Columns collection .
After setting the data source asynchronously, it changes my column header labels that I had set previously. It changes them to the column name of the underlying datasource which I do not want to use.
Is there a way to solve this?
BW
Brian Wright
June 17, 2005 06:44 PM UTC
Nevermind.. it all works.
Basically I was setting this for each column:
gridColumnDescriptor1.Name = "xx"
But I simply got rid of all those lines and changed them to:
gridColumnDescriptor1.HeaderText = "xx"
and both problems went away..
Sorry.