Hi.I don't know where to post this ... please help.
I'm trying to put each character in a string into an array.
Private Sub cmdNameslow_Click()
Dim username As String
Dim index As Integer
Dim myArray()
ReDim myArray(Len(username))
'prompt username
username = InputBox("Enter your name", "NAME")
'display username one charachter at a time
For index = 1 To Len(username)
myArray(index) = username
Next index
How do i go about doing this ?
Thanks