PopUp Messages

G

Guest

I am using Access 2000
I have developed a number of reports that are opened with macros using
buttons on a main directory page.

The reports take a bit of time to open so I want to show message on the
screen while a report is loading.

I developed a pop-up form with the message in a label box complete with a
timer function that uses a close macro to close the form after 4 seconds. It
works well when I open it from the form title. (DoubleClick on the form title)

I inserted a line in the macro that opens a report before the open report
line to open the form. The form does open but all that is on the screen is
the outline until the report opens, then the form populates as well but of
course by then the report is open and there is no need of the message (Not
really what I had in mind) The form does close after five seconds so that
part works.

Can anyone tell me how to get the results that I want?
 
A

Albert D. Kallal

On each iteration of your timer event, try playing a doevents in the
code....

It quite hard to make this work, since your using up processing to open the
report, and there really not anything left over for processing to update
your progress screen...

Try the doevents as above.....
 
G

Guest

Thank you Albert. I was afraid that I would have to get into code to solve
this. Oh well another learning curve to climb.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top