Are the players doing the same thing each turn? Or is the second turn for a player supposed to be different? Why are you going to 9?

If you use the same turn code, then just declare one variable at the top of your Form.

Code:
Dim playerTurn as Integer
And use:
Code:
If playerTurn = 1 Then
'Player1 Turn Code
playerTurn = 2
Else
'Player2 Turn Code
playerTurn = 1
End