Is my form loaded/open? (1 Viewer)

Status
Not open for further replies.

ajetrumpet

Banned
Local time
Today, 14:20
Joined
Jun 22, 2007
Messages
5,638
Is my form loaded/open? (VBA check)

This works on any type of object in the database:

The system command built-in function from MS works wonders. here it is:
PHP:
Function GetObjState(strName String, strType As Long) As String

dim ObjState as long

ObjState = SysCmd(acSysCmdGetObjectState, strType, strName)

    if ObjState = 0 then 
       ' The object is closed.
        GetObjState = "Closed"
    
elseif ObjState = 1 then 
       ' The object is open.
        GetObjState = "Open"

elseif ObjState = 2 then 
       ' The object has been modified
        GetObjState = "Modified and UnSaved"

    end if

msgbox GetObjState

end function
Here are the object types for the second argument:
PHP:
form = 2
function = 10
macro = 4
module = 5
query = 1
report = 3
table = 0
 
Last edited:
note that vba has constants for the second parameter


so

getobjstate("myform", acform)
getobjstate("myquery", acquery)

etc etc
 
For most situations you don't need this code. If a form is Loaded (in Access) it is open. And therefore you can use the

CurrentProject.AllForms.IsLoaded("formNameHere")

to get the true or false as to whether it is loaded. Most of the time you do not need to know if a form/report is modifed/unsaved as we don't normally do runtime changes to design (especially with an MDE/ACCDE as you can't).

So, while this code may work, it is certainly overkill in most circumstances.
 
Very nice post with a ton of informative information. I really appreciate the fact that you approach these topics from a stand point of knowledge and information
instead of the typical “I think” mentality that you see so much on the internet these days.
 
Last edited:
Status
Not open for further replies.

Users who are viewing this thread

Back
Top Bottom