User1394630246 posted
I have the following that creates an array of the alphabet (A-Z)
_Alphabet = New ArrayList()
For i As Integer = 65 To 91 - 1
_Alphabet.Add(Convert.ToChar(i))
Next
I want to populate this into some buttons in a qwert keyboard manner. However my array is in A-Z list. Is there a way to populate the list in a qwerty fashion?