I'm looking to take a word, anywhere from 3 to 10 letters, and determine all combinations without repeating the letters and assign them to an array. I've gotten far enough to assign the individual letters to an array, but need some direction on the rest. Any input will be appreciated.
Thanks,
WrayGun
Public Sub FindTheWords()
Dim Cnt As Integer
Dim Letters(100) As Integer
For Cnt = 1 To Len(Text1.Text)
Letters(Cnt) = Mid(Text1.Text, Cnt, 1)
Next
End Sub
***You can't change your past, but you can change your future***
Thanks,
WrayGun
Public Sub FindTheWords()
Dim Cnt As Integer
Dim Letters(100) As Integer
For Cnt = 1 To Len(Text1.Text)
Letters(Cnt) = Mid(Text1.Text, Cnt, 1)
Next
End Sub
***You can't change your past, but you can change your future***