M
microfich
Hi,
I've installed (via VBA) a status meter. The meter appears at the beginning
of the execution but does not increment until either I break the code or the
end of execution. Using Access 2003.
Code sample:
SysCmd acSysCmdInitMeter, "Processing", 5000
lngCount = 0
Do While tblname.EOF=False
....process stuff...
lngCount = lngCount + 1
SysCmd acSysCmdUpdateMeter, lngCount
tblname.MoveNext
Loop
SysCmd acSysCmdRemoveMeter
Any ideas? Thanks!
I've installed (via VBA) a status meter. The meter appears at the beginning
of the execution but does not increment until either I break the code or the
end of execution. Using Access 2003.
Code sample:
SysCmd acSysCmdInitMeter, "Processing", 5000
lngCount = 0
Do While tblname.EOF=False
....process stuff...
lngCount = lngCount + 1
SysCmd acSysCmdUpdateMeter, lngCount
tblname.MoveNext
Loop
SysCmd acSysCmdRemoveMeter
Any ideas? Thanks!