Link to home
Start Free TrialLog in
Avatar of Rayne
RayneFlag for United States of America

asked on

progress bar in access 2010

is there a application.statusbar = "my message" thing in access vba ? how can use this in access? to show something in the status  bar
ASKER CERTIFIED SOLUTION
Avatar of Jim Dettman (EE MVE)
Jim Dettman (EE MVE)
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
example
Application.SysCmd acSysCmdSetStatus, "your status message"

Open in new window

oops. didn't see Jim's posts.
Actually, I'm a bit off on that, it's:

<ret value> = Syscmd(acSysCmdSetStatus,"Text")

also:

 <ret value> = Syscmd(acSysCmdClearStatus)

 clears the status text.

 Never used it myself<g>

Jim.
yikes, one more correction: A bar is:

varReturn = SysCmd(acSysCmdUpdateMeter, X)

What I gave you before was for text.

Jim.
Avatar of Rayne

ASKER

thank you SIRE