SysCmd

R

Rick Allison

I really do not know if this belong here but the other groups did not seem
to fit either, so here goes.

I want to use acSysCmdInitMeter, acSysCmdUpdateMeter, and acSysCmdSetStatus.

The first two to get the meter (blue dots) and the setstatus to change the
words. They don't seem to go together. Can they?
 
D

Douglas J. Steele

acSysCmdInitMeter takes a text argument, so you don't need
acSysCmdSetStatus.

Here's an excerpt from the help file:

strMsg = "Reading " & UCase$(strTableName) & "..."
' Display message in status bar.
varReturn = SysCmd(acSysCmdInitMeter, strMsg, lngCount)
For lngX = 1 To lngCount
' Update meter.
varReturn = SysCmd(acSysCmdUpdateMeter, lngX)
. ' Do something with record.
 

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