Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Why won't my progress bar/status label show during a long process?

Progress Bar/Status Label

Why won't my progress bar/status label show during a long process?

by  TrojanRabbit  Posted    (Edited  )
Sometimes, during a long process, you may not see visible changes that you programmed, such as a change in a progress bar or status label. It seems that the code isn't being executed. The problem is that, although the code is actually being executed, it's not being shown. Access often tries to finish other code before showing something on the screen. In the case of a progress bar, the progress bar is being updated, but Access isn't going to show it until the process is complete. To get it to show the visible effects of your code, put DoEvents immediately after the code referring to the visible object.

DoEvents tells Access to wait for other processes before continuing. Any output to the screen will, thus, be executed before the code continues. DoEvents is also helpful when you need to make sure something is updated before using it.
Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top