C
Chris
When I open my database I open a frmIntro and straight after that I
open 3 forms.
docmd.openform "frmIntro"
Forms("frmIntro").SetFocus
docmd.openform "frmA"
docmd.openform "frmB"
docmd.openform "frmC"
Forms("frmIntro").SetFocus
docmd.Close
frmIntro just simply says on it "Please wait while the database opens"
however, because Access executes the other open commands straight
away, it does not let frmIntro open fully and all I can see on the
frmIntro is the title bar of the window, it doesn't show the body of
the window. I have tried to halt opening the other forms. Can anyone
help me? Even just pausing the code and allowing frmIntro to open
fully would be good.
open 3 forms.
docmd.openform "frmIntro"
Forms("frmIntro").SetFocus
docmd.openform "frmA"
docmd.openform "frmB"
docmd.openform "frmC"
Forms("frmIntro").SetFocus
docmd.Close
frmIntro just simply says on it "Please wait while the database opens"
however, because Access executes the other open commands straight
away, it does not let frmIntro open fully and all I can see on the
frmIntro is the title bar of the window, it doesn't show the body of
the window. I have tried to halt opening the other forms. Can anyone
help me? Even just pausing the code and allowing frmIntro to open
fully would be good.