procedure Subscribe(const Event: TNotifyEvent);
Objects elsewhere in the application subscribe to calls from TNotifyEvents by calling Subscribe with the method that is to be called passed in the Event parameter.
NOTE: Subscribers must unsubscribe their methods before they are freed. However, TNotifyEvents objects can be freed safely at any time.
Multiple requests for subscriptions to the same method of the same object are ignored.