I'm facing a problem that I can't find a way in Delphi to solve it.
I have a pop up menu and I have an event for when the person select this option, what I want to do is broadcast this event for any object that registry to it.
The problem that I'm facing is that I can just registry to the event if I have an instance of the pop up menu created, but if I do create an instance just to listen do this event still it is a different instance and I wont be able to listen to it.
How can I archive this goal of have many objects listen to an event of one object in Delphi?
Thanks