If a Modal form creates a form and does .Show, how can the parent later determine if the non-modal form is still open or if the user closed it?
3 Answers
0
votes
4
votes
0
votes
All VCL components are tied into their parents with AddComponent and RemoveComponent notifications. If your form is set to Action = caFree in OnClose then it will free itself when the user (or you) closes it. This already notifies its parent and you can override the notification receipt in the parent to get this event. Bri