matty
Scripting Guru
Posts: 8336 Reputation: 109
39 / /
Joined: Dec 2002
Status: Away
|
RE: Another StuffPlug NG question...
Try this:
code: Function talker(strInput)
If strInput <> "" Then
talker = UCase(Left(strInput, 1)) & Right(strInput, Len(strInput) - 1)
Else
talker = ""
End If
End Function
|
|