08-04-2009, 03:25 AM
Code:
Private Sub Check4_Click()
Dim index As Long
If Check4.Value = 1 Then
txtRight = GetPlayerMap(MyIndex) + 1
End If
End SubAlso think you can do something like:
Code:
Private Sub Check4_Click()
Dim index As Long
If Check4.Value = 1 Then
txtRight = Map.num + 1
End If
End SubIf it's client side.
