Hi all,
I'm creating my own DataGridViewColumn class, and have added a string
property to it which should be settable via the Property designer.
I've gotten the property to show up, but even if i set a value, the
code generated sets the property to null, not the value I typed.
Any ideas?
Thanks
Vijay - 30 Mar 2006 19:21 GMT
The generated code will show null only when if you have not initalized the
property in the DataGridViewColumn Class..., other than that.. what ever
you set should be available at run time.. are you seeing it at runtime ??
VJ
> Hi all,
>
[quoted text clipped - 5 lines]
> Any ideas?
> Thanks
Andy - 04 Apr 2006 16:44 GMT
Nope. I can set the property, close the property browser, reopen it,
and its gone.
The code in the designer file has:
myCol.myProp =null; // Should be the value i set.