Message box during data load

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

My code performs a quiry in Oracle, however it takes a while. Of course the
hourglass shows up during the quiry, but I would like something a bit more
informative. Is it possible to perhaps display a message while the quiry runs
and that automatically is removed afterwards - all without any user
intervention?

Thanks
The Doctor
 
Hi Dr. Schwartz,

Try:

Application.StatusBar = "Query running, please be patient..."
'Your query code
Application.StatusBar = False
 

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

Back
Top