Splash screen

B

Ben

Hi all,

I have a long running query that usually takes about 10-15 mins over the
network. I would like to provide a simple splash screen. Can you share
some thoughts on this?

Thanks,

Ben
 
J

Jack Leach

Make a form to your desired splash screen (you can hide the border/buttons
etc in the format properies), and open it before the query is run.

DoCmd.OpenForm "mysplashform"
CurrentDb.Execute "queryname"
DoCmd.Close acForm, "mysplashform"


You can also use DoCmd.RunSQL if you need the expression service (reading
access form controls for values)


hth
--
Jack Leach
www.tristatemachine.com

"I haven't failed, I've found ten thousand ways that don't work."
-Thomas Edison (1847-1931)
 

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