Progress indicator

  • Thread starter Thread starter John
  • Start date Start date
J

John

Hi

How can I use access progress bar programmatically for my own purpose?

Thanks

Regards
 
How can I use access progress bar programmatically for my own purpose?

You'll need to set a reference to (i think) "Microsoft Windows Common
Controls", then put one on your form and give it a name. You set the Min
and Max properties to whatever you want, then as you iteratively set the
Value property, the progress bar does the right thing.
 
John said:
Hi

How can I use access progress bar programmatically for my own purpose?

That depends on what exactly you mean. If you mean the progess bar
Access occasionally displays in the application status bar, you can use
the commands

SysCmd acSysCmdInitMeter
SysCmd acSysCmdUpdateMeter
SysCmd acSysCmdRemoveMeter

to use it for your own purposes. See the help topic for the SysCmd
method of the Application object.
 

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