One more question about Progressbar

kjellsor

Newcomer
Joined
Nov 22, 2004
Messages
11
-
This is the timer
-

Private Sub Timer1_Elapsed(ByVal sender As System.Object, ByVal e As System.Timers.ElapsedEventArgs) Handles Timer1.Elapsed

ProgressBar1.Value += 5
End Sub

-
This is the progressbar
-

Private Sub ProgressBar1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ProgressBar1.Click
ProgressBar1.Enabled = True
End Sub
----------

Handles Timer1.Elapsed: it says that Elapsed cant be found. I can only choose Tick. My friend get it to work using Elapsed but not me.. :confused:
 
Back
Top