Link to home
Start Free TrialLog in
Avatar of jm_jackson
jm_jackson

asked on

status bar moving as a timer counts

Hey,

Should be a simple thing... I want to use a status bar in a form. I want the "loading" part of it to gradually increase as a timer counts. If this isn't possible, how would you do this simply using a Progress Bar?

Thanks,

JJ
Avatar of trkcorp
trkcorp

Not sure I understand what you mean about the status bar but a progress bar is very simple.

progressbar1.value = 0
Progressbar1.max = timer_at_100_pct 'the full value

in your "load" loop:

Do Until timer_count = timer_at_100_pct
    timer_count = timer_count + 1
    progressbar1.value = timer_count
loop
MsgBox "Loaded"
ASKER CERTIFIED SOLUTION
Avatar of trkcorp
trkcorp

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