kjellsor Posted November 23, 2004 Posted November 23, 2004 - 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: Quote
Administrators PlausiblyDamp Posted November 23, 2004 Administrators Posted November 23, 2004 Depends on which of the timer classes you have used http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemtimerstimermemberstopic.asp http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwindowsformstimermemberstopic.asp Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.