I'm currently coding a Timer to start once a button is clicked in Visual Studio using VB.NET. Here's My Code:
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
Timer1.Enabled = True
Timer1.Start()
seconds = +1
Label2.Text = seconds.ToString
When the program is run and the button is clicked, the timer only moves one integer, and you have to keep on pressing it to make it move. Any ideas?