Here is the code I have:
Code:
Dim strLet(30) As String
Dim intCount As Integer
Dim intLet As Integer
strLet(0) = "A"
strLet(1) = "B"
strLet(2) = "C"
strLet(3) = "D"
strLet(4) = "E"
strLet(5) = "F"
strLet(6) = "G"
strLet(7) = "H"
strLet(8) = "I"
strLet(9) = "J"
strLet(10) = "K"
strLet(11) = "L"
strLet(12) = "M"
strLet(13) = "N"
strLet(14) = "O"
strLet(15) = "P"
strLet(16) = "Q"
strLet(17) = "R"
strLet(18) = "S"
strLet(19) = "T"
strLet(20) = "U"
strLet(21) = "V"
strLet(22) = "W"
strLet(23) = "X"
strLet(24) = "Y"
strLet(25) = "Z"
strLet(26) = "AA"
strLet(27) = "AB"
strLet(28) = "AC"
strLet(29) = "AD"
[\code]
Isn't there a way to say something like strLet = {"A", "B", "C"}??? I tried a couple things and nothing worked. Thanks in advance!