I've written a UserControl, and within that control the user is able to change some properties on a form. I can't figure out how to display the changes in the property grid. The only time I've been able to update these properties, is in the UserControl's Load event. This won't work, because changes will be made after it's loaded.
My properties for the control are Public. I have sent changes to the properties in the same file that contains the properties, and I've also tried it elsewhere in the application. Neither way has worked.
A few examples of properties that can be changed:
ConnectionString:
Query Statement:
Report Name:
I'd really appreciate help with this. Thanks.
~ Sheryl