I am Creating a new component derived from TCustomGropuBox. I had implemented some new properties in this component such as "TYpe" and "Status".
this two properties are of Unumerated type tha means they have a Enumerated type as reference:
TType=(Station,Pallet);
TStatus=(OnWorking,Done,Raw,Locked)
Now I would like to influence the contents of propertry "Status" dependig to what user select in "Type". To be more clear, if the user select "Pallet" in "Type" in the Property "Satus" the option should be as report above, if instead the user select the option "Station" in "Type" the following option should be avaiable in "Status":
TStatus=(Enabled, disabled);
Do you Known how I can mamde it in Delhi?
Thanks