A2003: hide automatic progress bar (1 Viewer)

bulrush

Registered User.
Local time
Today, 13:35
Joined
Sep 1, 2009
Messages
209
A2003

I have a loop on a form, which imports records. During my main loop I display a text status message on the status bar showing how many records have been processed. During this import process I also do INSERT queries and perhaps some UPDATE queries for detail records attached to the main record I am importing. Something is triggering a progress bar to overwrite my text status bar, as the progress bar is in the same location as my status bar text. So in the status bar area I get a lot of flashing between my text I display, and the automatic progress bar.

How do I turn off the progress bar during my loop, then turn it back on at the end of my loop (to be used by other processes)?

Thanks.
(No, Access help was not useful. I tried it.)
 

DJkarl

Registered User.
Local time
Today, 12:35
Joined
Mar 16, 2007
Messages
1,028
Have you tried the Echo command?

Turn off:
Echo False, "YourMessageHere"

Turn On:
Echo True
 

Users who are viewing this thread

Top Bottom