I
Infocore
I have a button on a form, that when clicked, runs a query that takes
a long time. I wanted to pop up another form that would tell the user
the query takes a long time and displays the start time of running the
procedure.
I built a small form for this and put it in my vba code. So now my
VBA says
....
DoCmd.OpenForm "frmMsg", acNormal
DoCmd.OpenQuery "LongQuery"
The problem I have is that the frmMsg doesn't fully open. It seems to
start to open it and then doesn't display it on screen to me until
after LongQuery finishes.
I tried taking the
DoCmd.OpenQuery "LongQuery" line out and put it in the OnOpen event of
frmMsg, but that didn't seem to help.
Any ideas?
a long time. I wanted to pop up another form that would tell the user
the query takes a long time and displays the start time of running the
procedure.
I built a small form for this and put it in my vba code. So now my
VBA says
....
DoCmd.OpenForm "frmMsg", acNormal
DoCmd.OpenQuery "LongQuery"
The problem I have is that the frmMsg doesn't fully open. It seems to
start to open it and then doesn't display it on screen to me until
after LongQuery finishes.
I tried taking the
DoCmd.OpenQuery "LongQuery" line out and put it in the OnOpen event of
frmMsg, but that didn't seem to help.
Any ideas?