Hi All,

Need help for my game!

First I have a Countdown before they start, then I have a Countdown before the game stops.

My question is, do I have to write the hole code, from 1' 30'' -> 0 ore can I write it on another way? See my code:


Private Sub Timer3_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer3.Tick
i = i + 1
If i = 1 Then
Label1.Text = "3"
ElseIf i = 2 Then
Label1.Text = "2"
ElseIf i = 3 Then
Label1.Text = "1"
ElseIf i = 4 Then
Label1.Text = "0"
ElseIf i = 5 Then
Label1.Text = "START GAME!"
ElseIf i = 6 Then
i = i - 1
Label1.Text = "1:30"
ElseIf i = 7 Then
Label1.Text = "1:29"
ElseIf i = 8 Then
Label1.Text = "1:28"
ElseIf i = 9 Then
Label1.Text = "1:28"
ElseIf i = 10 Then
Label1.Text = "1:27"
and more and more............
End If
End Sub

Thanks for your help,

sparrow1