Progress Bar....how?

T

TJ

Hi,

I am using MS-ACCESS 2003.
I placed MS Progress Bar Control 6.0 on the form.

Dim currentWorking as Boolean

Private Sub StartProgress()
currentWorking = True
While currentWorking
ProgressBarControlInstance.Value = i
i = i + 1
If i > ProgressBarControlInstance.Max Then
i = 1
End If
Wend

End Sub

Private Sub FinishProgress()

End Sub
 

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

Top