Space in textBox

Tech-Archive recommends: Fix windows errors by optimizing your registry



Hello
I have problem with this... In textBox I have some words with space
between for example
asdf fhhhh jjjjjkkkkk oooooo
and space is not same between all word. I try to have only word in
listBox without space (or in new array) and i try this:
----------------------------------------------------------------------------
Dim stringNeki () As String = textBox.Split(" ")
For Each stringN As String In stringNeki
If stringN <> " " Then
lstBox.Items.Add(stringN)
End If
Next
but dosen't work....

Can anybody help me, how to solve this.....

ThnX....

.