I use SysCmd to show progress of functions
' Show the progress meter
s = SysCmd(acSysCmd InitMeter, "Process Run " & Count & " Step", Count)
For i = 0 To Count - 1
' Do something
' Update the meter
s = SysCmd(acSysCmd UpdateMeter, i)
Next
' Hide the Meter
s = SysCmd(acSysCmd SetStatus, " ")
The problem is Access status information is hidden by the last command.
How do I hide the progress meter without disabling Access status
information?
' Show the progress meter
s = SysCmd(acSysCmd InitMeter, "Process Run " & Count & " Step", Count)
For i = 0 To Count - 1
' Do something
' Update the meter
s = SysCmd(acSysCmd UpdateMeter, i)
Next
' Hide the Meter
s = SysCmd(acSysCmd SetStatus, " ")
The problem is Access status information is hidden by the last command.
How do I hide the progress meter without disabling Access status
information?
Comment