I want to make 6 Timer right on top of each other. With a label to the left of it. Each label has a different time to start the countdown on. Like label 1 7 min. Label 2 6 min and so on. How do you do this in VB 2010.
Mr.Sunny 0 Newbie Poster
Recommended Answers
Jump to PostDrop a timer on your form. To get the timer to do something every one second, set the Interval property to 1000. To start the timer, set Timer1.Enabled = True. To execute code on every "tick" of the timer, put that code in the Timer1.Tick handler. To stop the timer …
Jump to PostDo you mean you want a label that says Human and start the countdowntimer by clicking on that label ?
Jump to PostSorry for late reaction, my modem broke down. This is code I use for clicking on Label. Where it says do something insert what you want to happen.
Private Sub Label_MouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Label1.MouseClick, Label2.MouseClick, Label3.MouseClick, Label4.MouseClick, Label5.MouseClick, Label6.MouseClick Dim strName …
All 9 Replies
iFrolox 4 Newbie Poster
Reverend Jim 5,225 Hi, I'm Jim, one of DaniWeb's moderators. Moderator Featured Poster
Mr.Sunny 0 Newbie Poster
Mr.Sunny 0 Newbie Poster
iFrolox 4 Newbie Poster
Mr.Sunny 0 Newbie Poster
Gé48 1 Newbie Poster
Mr.Sunny 0 Newbie Poster
Gé48 1 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.