This is what i have done so far and also wit my friend helps so we have created the layer and the look of a board game that we are assigned to
we have 2buttons - 1 for player 1 roll - and the second one is for player 2 roll and we wan to do it player 1 turn then player 2 turn and repeat again but the thing is that at the moment me and my friend are stuck because we do not know the code on how to start the player 1 and player 2 button so this is the code we made so far:
Option Strict On
Option Explicit On
Public Class frmBoard
Dim lblArray(35) As Label 'array of labels that make up the game board
Dim intRules(35) As Integer 'parallel array containing rules for the squares corresponding to lblArray entries
Dim blnP1Turn As Boolean = True 'switches indicating whose turn it is
Dim blnP2Turn As Boolean = False
Dim intP1Position As Integer 'position of player 1 on board
Dim intP2Position As Integer 'position of player 2 on board
Dim blnDoubleOccupancy As Boolean = False 'True if both players on same square
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'This is the size of each square (Label) in the game
Const intSQUARE_SIZE As Integer = 40
' this is the array of labels that make up the game board
'This for..Next Loop sets properties of each label in the array. The Select..Case statement
'places the labels around the edges of the form
For intCount = 0 To 35
lblArray(intCount) = New Label
lblArray(intCount).Size = New System.Drawing.Size(intSQUARE_SIZE, intSQUARE_SIZE)
Question
atyemail
This is what i have done so far and also wit my friend helps so we have created the layer and the look of a board game that we are assigned to
we have 2buttons - 1 for player 1 roll - and the second one is for player 2 roll and we wan to do it player 1 turn then player 2 turn and repeat again but the thing is that at the moment me and my friend are stuck because we do not know the code on how to start the player 1 and player 2 button so this is the code we made so far:
Link to comment
https://www.neowin.net/forum/topic/1172345-visual-basic-board-game/Share on other sites
14 answers to this question
Recommended Posts