Ok, I have been working on this all day.. I am stuck. Am I just missing something that won't allow me to force the random function to make sure it goes through the list before cycling the list again? The issue is it shows the same item sometimes in a row. So my goal is to get an "itunes" like function that it makes sure when it shuffles, it does NOT hit an already "shown" item.
My current code:
Dim rng As New System.Random()
Dim RAND(16) As String
RAND(0) = "A"
RAND(1) = "B"
RAND(2) = "C"
RAND(3) = "D"
RAND(4) = "E"
RAND(5) = "F"
RAND(6) = "G"
RAND(7) = "H"
RAND(8) = "I"
RAND(9) = "J"
RAND(10) = "K"
RAND(11) = "L"
RAND(12) = "M"
RAND(13) = "N"
RAND(14) = "O"
RAND(15) = "P"
RAND(16) = "Q"
If TextBox1.Text = 'Current Text
Then
TextBox1.Text = ("""" & RAND(rng.Next(RAND.Count())) & """")
End If