Status Bar

G

Guest

Hello all,

I would like to use a status bar (active x, I guess) while I am running some
code. The type that increments, like when you are loading software or
something. I am using access 97. Could someone steer me in the right
direction on how to do this, or some, links to some answers?
 
G

Graham Mandeno

Hi Mark

Have you tried the built-in progress meter?

Here is an example of its use:

Call SysCmd(acSysCmdInitMeter, "Processing records", rst.RecordCount)
Do Until rst.EOF
Call SysCmd(acSysCmdUpdateMeter, rst.AbsolutePosition)
' do something with a record
rst.MoveNext
Loop
Call SysCmd(acSysCmdRemoveMeter)
 

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