I have created a Component that implements IExtenderProvider. It provides several properties to the controls on the form. It
appears that everything is working as desired except for persistence.
If in design time, I set a value of one of the properties provided by the extender, it sets and the resulting change is made to
the InitializeComponent code. If save the code and design view and then close and reopen them, the code still shows the change
made at design time (as expected), but the property has the default value in the design view, not the value set in the code in
InitializeComponent.
The provided properties are of course saved in a 'property class' as in Billy Hollis' article
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnadvnet/html/v
bnet04082003.asp. I have done nothing to persist
the 'property class' because I figured it would be recreated when the form was opened.
What could I be missing?
Thanks
-------------------------------------------
Roy Chastain
KMSystems, Inc.
Roy Chastain - 27 Aug 2004 16:52 GMT
I am happy to say that I solved this one.
>I have created a Component that implements IExtenderProvider. It provides several properties to the controls on the form. It
>appears that everything is working as desired except for persistence.
[quoted text clipped - 15 lines]
>Roy Chastain
>KMSystems, Inc.
-------------------------------------------
Roy Chastain
KMSystems, Inc.
schneider - 27 Aug 2004 18:54 GMT
> I have created a Component that implements IExtenderProvider. It provides several properties to the controls on the form. It
> appears that everything is working as desired except for persistence.
[quoted text clipped - 15 lines]
> Roy Chastain
> KMSystems, Inc.
use the ProvideProperty attribute.
Schneider