Status message during running a process

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi
I have an AutoExec macro as via a VBA-function runs a lot of
create-a-table-queries. The hole process takes about one hour to execute.
I would like to have some MsgBox, or something likes that, showing which
query is runing.
Thank's in advance
 
Kent,

Check Help for:
syscmd acSysCmdInitMeter
syscmd acSysCmdUpdateMeter
syscmd acSysCmdRemoveMeter

When you update the meter, provide the name of the query that will be
executed next in the sequence. Make sure to issue the DoEvents statement
before actually calling each query, otherwise you may not see the meter
update.

Regards,
Graham R Seach
Microsoft Access MVP
Canberra, Australia
 
Or

SysCmd acSysCmdSetStatus
SysCmd acSysCmdClearStatus

which will let you put text without a progress meter.

--
Doug Steele, Microsoft Access MVP

(no e-mails, please!)


Graham R Seach said:
Kent,

Check Help for:
syscmd acSysCmdInitMeter
syscmd acSysCmdUpdateMeter
syscmd acSysCmdRemoveMeter

When you update the meter, provide the name of the query that will be
executed next in the sequence. Make sure to issue the DoEvents statement
before actually calling each query, otherwise you may not see the meter
update.

Regards,
Graham R Seach
Microsoft Access MVP
Canberra, Australia
---------------------------
 

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