Update Meter

  • Thread starter Thread starter Mike
  • Start date Start date
M

Mike

Hi:

First time user of the syscmd Command. Trying to get the
meter to work and show progress. It starts but meter does
not move to show progress. Here are the commands in my
code.
Any ideas

varRet2 = SysCmd(acSysCmdInitMeter, "Processing ", 100)
..
..
varRet2 = SysCmd(acSysCmdUpdateMeter, , 50)
..
..
varRet2 = SysCmd(acSysCmdUpdateMeter, , 100)
varRet2 = SysCmd(acSysCmdRemoveMeter)

Mike
 
Hi Mike,

Try eliminating the second (empty) argument on the second SysCmd statement:

varRet2 = SysCmd(acSysCmdUpdateMeter, 50)

For more ideas on progress meters take a look at my sample db on
www.daiglenet.com/msaccess.htm.
 

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

Back
Top