You could do something like this:
VB Code:
Dim c As Char Dim myStr As String = "ABC" Dim o As String For Each c In myStr 'Tells the computer to do something for each character in the string o &= "add something to the string o, can be anything ex. 0010" Next
Jeremy




Reply With Quote