Hi vbbb,
Here is my best help. In this example you add one TextBox named Text1, one ListBox named List1 and Command Button named Command1 then in the code section copy and paste my below code. Then only thing left for you is to run it and click Command button.
Private Sub Command1_Click( )
Dim i As Integer
For i = 1 To Len(Text1.Text)
With List1
.AddItem Mid(Text1.Text, i, 1)
End With
Next i
End Sub
Comment