Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8818363
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T05:05:22+00:00 2026-06-14T05:05:22+00:00

Does anybody see my mistake here? I am unable to recognize if a form

  • 0

Does anybody see my mistake here?

I am unable to recognize if a form is shown as a dialog in my app.

Public Class Form1

  Private m As Form2

  Private Sub Timer1_Tick(ByVal sender As Object, ByVal e As EventArgs) Handles Timer1.Tick
    Me.Text = DateTime.Now.ToLongTimeString & " " & IsAnyDialogShown()
  End Sub

  Public Function IsAnyDialogShown() As Boolean
    For Each f As Form In Me.OwnedForms
       If f.Owner Is Me Then
         Return True
       End If
    Next
  End Function

  Private Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button1.Click
    m = New Form2
    m.ShowDialog()
  End Sub

End Class
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T05:05:23+00:00Added an answer on June 14, 2026 at 5:05 am

    What you are looking is for the property modal.

    Check if the form’s modal property is true (that is meaning that the form is showed with ShowDialog)

    For Each f As Form In Me.OwnedForms 
       If  f.Modal=True Then 
         'your code here
       End If
    Next
    

    Now for your mistake (I haven’t visual studio to try it right now) but your IsAnyDialogShown(), it seems that it returns always true :

    For Each f As Form In Me.OwnedForms ' (So f belongs to Me)
       If f.Owner Is Me Then 'f.Owner is always me because you are seaching in forms that have as owner the Me form
         Return True
       End If
    Next
    

    Hope I helped a little.
    Tell me if I can do something more

    So after your comments.
    Try this:

            For Each frm as Form In Application.OpenForms
                If frm.Modal=True Then
                'do something 
                'Actually you should have only one form because only one can be in modal state
                end if
            Next
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does anybody see my mistake here? Private Sub Form1_Click(ByVal sender As Object, ByVal e
Can anybody see what is wrong with this code. it does not show up
Does anybody see any drawbacks? It should be noted that you can't remove anonymous
Does anybody see anything wrong with the following function? ( Edit : no, I
does anybody see database of hotels in popular cities of russia in russian language?
Does anybody know how I can see the code of a matlab p-code file?
Does anybody see what I'm doing wrong? The $brand['slug'] is empty when saving so
Does anybody know why this function, when passed an invalid date (e.g. timestamp) to
Does anybody know if the CUDA library 'Thrust' can generate random numbers on the
Does anybody know how to programmatically disable the keyboard individual letter pop-up? (This blue

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.