I am Currently making a program so i can enter a name
eg
Joe Bloggs
and switch the names around
eg
Bloggs Jow
Any ideas how to do this i am stuck
I have started of by inputing the name then finding the space.
were do i go from hear or i am i completly on the wrong track
Private Sub cmdSwitch_Click ()
namein = txtNameIn
spacepos = InStr(namein, " ")
End Sub
eg
Joe Bloggs
and switch the names around
eg
Bloggs Jow
Any ideas how to do this i am stuck
I have started of by inputing the name then finding the space.
were do i go from hear or i am i completly on the wrong track
Private Sub cmdSwitch_Click ()
namein = txtNameIn
spacepos = InStr(namein, " ")
End Sub
Comment