Hi!
I'm looking for a way to copy the values stored in strWords into a hashtable instead of showing them in the TextBox2.
I know that there's HashTableName.CopyTo but I just can't find something similar that suits my needs or am I just missing something?
VB Code:
Dim String1 As String Dim String2 As String Dim i As Short String1 = TextBox1.Text MsgBox(String1) String2 = String1.Replace(" ", "") String2 = String2.Replace(".", ",") strWords = Split(String2, ",") MsgBox(String2) For i = 0 To UBound(strWords) TextBox2.Text = TextBox2.Text & strWords(i) & vbCrLf Next




Reply With Quote