•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the Visual Basic 4 / 5 / 6 section within the Software Development category of DaniWeb, a massive community of 402,522 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,615 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our Visual Basic 4 / 5 / 6 advertiser: Programming Forums
Views: 3293 | Replies: 6 | Solved
![]() |
Hi,
Copy this Function and Pass the form name. If form is loaded and not shown, then it's Visible property will be false, u need to check that:
Regards
Veena
Copy this Function and Pass the form name. If form is loaded and not shown, then it's Visible property will be false, u need to check that:
Private Sub CheckFormStatus(Myform As Form)
Dim objForm As Form
Dim FlgLoaded As Boolean
Dim FlgShown As Boolean
FlgLoaded = False
FlgShown = False
For Each objForm In VB.Forms
If (Trim(objForm.name) = Trim(Myform.name)) Then
FlgLoaded = True
If objForm.Visible Then
FlgShown = True
End If
Exit For
End If
Next
MsgBox "Load Status: " & FlgLoaded & vbCrLf & "Show Status:" & FlgShown
End Sub
Regards
Veena
![]() |
•
•
•
•
•
•
•
•
DaniWeb Visual Basic 4 / 5 / 6 Marketplace
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
•
•
•
•
3d apple blue screen cocoa computer crash dell development drivers email enterprise eudora firefox framework games gnu graphics ibm intel internet java linux microsoft microsystems mozilla news next open open source open-source opengl openoffice operating os penelope programming red hat rhel server software source step sun super system ubuntu vista wesnoth windows xp
- Updated : Simple ASP.Net Login Page (ASP.NET)
- how to open a pdf file using form in access and creation of browser button (Visual Basic 4 / 5 / 6)
- Open a website using a form (C#)
- By Pressing F3 on MDI Form(Parent) How can a sub menu Form will open (Visual Basic 4 / 5 / 6)
- MDI Child Form Placement (C#)
- Blank Record & Open Form From Datagrid (C#)
- owner form display problem (VB.NET)
- Simple ASP.Net Login Page (Using VB.Net) (ASP.NET)
- Check the code!! (C++)
- Populating & Retrieving Data in a listbox : ASP.NET (w/ VB.NET) (ASP.NET)
Other Threads in the Visual Basic 4 / 5 / 6 Forum
- Previous Thread: help me about save and not save text file
- Next Thread: Multiline in a list box


Linear Mode