I have main form and some other forms, that can be shown by controls, placed on the main form, using ShowDialog(control). Also I have event handler on the main form, that can be handled anytime. How can I check inside it, is there any other dialog forms?
Share
If I understood your question correctly, I would suggest you to check form.visible for each form.
This might help you