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:
** contact details removed **
Please help me
Maniesh
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
Please help me
Maniesh
Comment