Hello, I am trying to make a Texas HoldEm program and I need a little help with generating the cards.
When the play presses Button1 I want it to randomly generate 2 cards. These cards will generate in TextBox1 and TextBox2.
This is all I have so far. (I know, it's pathetic.)
Any help is appreciated. I am not good with VB.NET at all. (Yet.) :D
When the play presses Button1 I want it to randomly generate 2 cards. These cards will generate in TextBox1 and TextBox2.
This is all I have so far. (I know, it's pathetic.)
Code:
Dim Rand As New Random
Dim Cards As String = ("A, 2, 3, 4, 5, 6, 7, 8, 9, 10, J, Q, K")
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
End Sub