Is it possible to start and stop a progress indicator from within an action event?
If so, how?
Is it possible to start and stop a progress indicator from within an action event?
If so, how?
Richard,
Do you mean like this since there isn’t a “start/stop”? (if your control was named progressbar1)
ProgressBar1.Visible = False
ProgressBar1.Enabled = False
or
ProgressBar1.value = 0 // or 100
What action are you referring to?
That worked, thank you for your help
I had a syntax error.