Hi, I am trying to add a timer countdown of 30 secs to a form I have made.
Here is the code inside the start button
timer1.Interval = 1000;
timer1.Enabled = true;
here is the code inside the timer_Tick
timerlbl.Text = timer1.ToString();
what happens tho is this is displayed:
[System.Window.Forms.Timer], interval: 1000
I can't seem to work out hot to start the count at 30 and work my way down every second, any pointers in the right direction would be cool thx