Hello,
The windows standard progress bar control has a "PerformStep" method which automatically increments the progress bar based on the value of "step" property.
Is there an equivalent of this method for the RadProgressBar? I am looking for this because I'd like to increment the RadProgressBar based on a completed action, rather a time based update.
For example:
For i as integer = 0 to 60 '<--this number will be dynamic based on database records |
'//Do Something here |
RadProgressBar.PerformStep |
Next |
Thank You.