mpappert Posted February 10, 2003 Posted February 10, 2003 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. Quote
*Gurus* divil Posted February 10, 2003 *Gurus* Posted February 10, 2003 m_strFirstName = m_strFirstName.Substring(0, 1).ToUpper() & m_strFirstName.Substring(1) Quote MVP, Visual Developer - .NET Now you see why evil will always triumph - because good is dumb. My free .NET Windows Forms Controls and Articles
mpappert Posted February 10, 2003 Author Posted February 10, 2003 Thanks Divil! That is *MUCH* better! ;) Quote
*Experts* Bucky Posted February 10, 2003 *Experts* Posted February 10, 2003 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) Quote "Being grown up isn't half as fun as growing up These are the best days of our lives" -The Ataris, In This Diary
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.