Wish Custom View DesignerCreateView

LucaMs

Expert
Licensed User
Longtime User
At the moment you can take advantage of the LBL's properties to set the properties of the custom view.

The problem is that if the user changes these properties later, the changes will not applied, since the properties are read at "DesignerCreateView time".

Would require a kind of refresh
 

LucaMs

Expert
Licensed User
Longtime User
It's up to you to update the properties.
You could also use an invisible Lable taking over the properties of the Lbl Label in the DesignerCreateView routine and use these.


I explained badly (very likely :)) or I did not understand your answer, Klaus
 

LucaMs

Expert
Licensed User
Longtime User
You can or must define the properties the user can change with getProperty and setProperty routines.
In these routines you must add the code to do the update necessary for other views in your CustomView.


I know it. Thanks, Klaus.
 
Top