SIMIN Posted June 22, 2008 Posted June 22, 2008 Hello, How can I check if ANY form except main form / start up form is being shown / loaded right now or not? Without setting a boolean flag... Directly with .NET Framework... Possible? Thanks. Quote
roger_wgnr Posted June 23, 2008 Posted June 23, 2008 Have not tested this but you should be able to do something like this For Each FrmToCheck As Form In Application.OpenForms If FrmToCheck IsNot Me Then If FrmToCheck.Visible Then 'Form Is Displayed do whatever End if End If Next Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.