Hi,
Any body knows a way to notify a client component linked to a master
component, when this one becomes active?
Here is an example:
TServerComp=class(TComponent)
...
property Active...
...
end;
TClientComp=class(TComponent)
....
property ServerComp... //TServerComp
....
end;
I am activating the server component on a overriden loaded procedure.
At this time I would like to activate or notify the client components,
but it seems too late, because the loaded procedure of the client
component has been executed at this time.
Thanks in advance for any help.