QUOTE(BadwithVB @ 10 May, 2008 - 02:50 PM)

i see but its not right, its spelling the name backwards.
I want my program to do this:
I want to enter my name from a textbox and then it displays in a label
so if i enter Jerry Springer
then i get
Lastname(comma)(Space) first name
like this Springer, Jerry
I dont think i made it clear, =(
thanks for info thou
Okay, I think this MAY help you. Let me know if it works!
FYI you can replace "me.inputBox.text" with the input textbox name in your form. Also, you can replace "Me.Output.Text" with the LABEL name in your form.
CODE
Private Sub convertButton_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles convertButton.Click
Dim input As String
Dim indexNum As Integer
Dim lastName As String
Dim firstName As String
Dim output As String
input = Me.inputBox.Text
indexNum = input.IndexOf(" ", 0)
lastName = input.Remove(0, indexNum + 1)
firstName = input.Remove(indexNum)
output = lastName + ", " + firstName
Me.Output.Text = output
End Sub