String Proper Case

Vitaly

Member
Joined
Nov 8, 2002
Messages
12
Location
Baltimore, MD
I was wondering if there a better style of converting String to Proper Case string, then using VB6 StrConv function:



Dim sTest as String = "TODAY IS A RAINY DAY!"

MessageBox.Show(StrConv(sTest, VbStrConv.ProperCase), "Conversion", MessageBoxButtons.OK)



Thank You
 
Back
Top