Progress bar help please

  • Thread starter Thread starter Rocky5
  • Start date Start date
R

Rocky5

Hi;

I am looking for a generic Progress bar that does real time incrementation
of the width of the bar.

Example

Launch a Query (Several thousands of records)

Progress bar

Query is almost done

Progress Bar Closes

Result set (Dynast shows up)


.. Trying to get a generic one that looks like a true windows application.
and to be able to use that in several different applications

Thought about the do events

Thanks for your help.
 
Hi Rocky

You can use the native Access progress meter - check out the following three
SysCmd actions:
acSysCmdInitMeter, <text>, <max value>
acSysCmdUpdateMeter, <progress value>
acSysCmdRemoveMeter

If you don't like that, you can run your own. Many people like a larger,
more central progress meter, so you can create a form with a coloured
rectangle that grown in length as the operation progresses.

HOWEVER, both these methods require your code to have control during the
operation, so that you can execute the commands to update the meter. If you
are running a query thenthere is no way to make regular callbacks to your
own code to update the progress.

So, the short answer is: Sorry, it can't be done.
 

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

Similar Threads

Excel Progress Bar Showing Progress of Month 0
Progress Bar Flicker 1
Progress bar and system thread 1
Progress bar 2
Progress Bar does not Finish 3
Progress Bar for timer event 3
Progress Bar pattern 2
Progress BAR 2

Back
Top