VBA Processing Time

N

NotTechSauvy??

I am currently running a process that showcases what queries are being
executing by vba on the mainform. The issue is that when i try to
update the label(label.caption = "qry1-n") is doesn't refresh the
queries that run quickly. Is there a way to refresh the label quick
enough so that i can be seen on the main form
 
M

Michael Bednarek

I am currently running a process that showcases what queries are being
executing by vba on the mainform. The issue is that when i try to
update the label(label.caption = "qry1-n") is doesn't refresh the
queries that run quickly. Is there a way to refresh the label quick
enough so that i can be seen on the main form

No. You have to slow down the process of displaying the label, probably
best with the Repaint method of the UserForm object.
 

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