This is a thread from another newgroup. Please see below to fill in what
has happened... Hopefully Douglas will see this but if not can anyone else
help based on their experience?
what I want to do is change strMsg inside the For loop. Something like:
strMsg = "Processing row " & rownbr " of " & TotalRows & "..." but keep the
UpdateMeter running too.
Have you ever tried doing that? Is that even possible?
Thanks,
Rick
"Douglas J. Steele" <NOSPAM_djsteele@NOSPAM_canada.com> wrote in message
news:%(E-Mail Removed)...
> 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.
> .
> .
> rst.MoveNext ' Go to next record.
>
> Next lngX
>
>
> Since this is a coding question, microsoft.public.access.modulesdaovba
would
> probably have been the most appropriate forum, although
> microsoft.public.access wouldn't have been out of place either.
>
> --
> Doug Steele, Microsoft Access MVP
> http://I.Am/DougSteele
> (No private e-mails, please)
>
>
>
> "Rick Allison" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > 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?
> >
> >
> >
>
>