Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

Again, another post to see if there is a better means for doing this ... I am taking a name such as "ashlyn" and making it read "Ashlyn" ...

 

   m_strFirstName = UCase$(Left$(m_strFirstName,1)) & Right$(m_strFirstName, Len(m_strFirstName) -1)

 

Thanks,

M.

  • *Experts*
Posted

The ToTitleCase function of the TextInfo class can be used to

convert a string to Title Case (aka Proper Case), as so:

 

Dim cinfo As New Globalization.CultureInfo("en-US")

m_strFirstName = cinfo.TextInfo.ToTitleCase(m_strFirstName)

"Being grown up isn't half as fun as growing up

These are the best days of our lives"

-The Ataris, In This Diary

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...