Hi
I have business object data source. and its is bound to a 3rd party
combo box which displays grids.
I have a property SomeDate which i want to display in the header as
"Some Date" or whatever.
Is this possible?
Can i add some attributes to my business object property to make it
so?
Please help.. and TIA
PS
Nicholas Paldino [.NET/C# MVP] - 19 Feb 2008 21:05 GMT
PS,
It's impossible to say without knowing what the third party combo box is
that you are using. You have to look at the object model for that combo box
and see how it allows for the configuring of the drop down.

Signature
- Nicholas Paldino [.NET/C# MVP]
- mvp@spam.guard.caspershouse.com
> Hi
>
[quoted text clipped - 11 lines]
>
> PS
Marc Gravell - 19 Feb 2008 23:12 GMT
> Can i add some attributes to my business object property to make it
> so?
Well, DataGridView honours [DisplayName("My Column Header")], so give
that a whirl.
You'll need a "using System.ComponentModel;" declaration at the top,
too.
Marc