how do I create a timed progress bar in microsoft access?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • maniesh
    New Member
    • Feb 2009
    • 6

    #1

    how do I create a timed progress bar in microsoft access?

    I want to complete a project and I want to place a timed progress bar on my splash screen, I want to find out a method of timing my progress bar to update every 10 seconds.

    here's what I got so far:

    Code:
    Private Sub Form_Open(Cancel As Integer)
    If (ProgressBar0.Value <0) then
    ProgressBar0.Value = ProgressBar0.Value +10
    End If
    ProgressBar0.Value =100
    
    End Sub
    ''''If anyone' got a solution reply to [edit: e-mail address removed - not in line with site policy]

    Please help me
    Maniesh
    Last edited by Stewart Ross; Feb 17 '09, 03:43 PM. Reason: added code tags, removed e-mail address
Working...