I need to apply vbProperCase to just the first letter of every sentence in the string, and not to every word in the string:
I need myString to come out like this: "This is a test. Just a test.", and not like: "This Is A Test. Just A Test."VB Code:
myString = "thIs is A TesT. JUSt a tESt." myString = StrConv(myString, vbProperCase)
Anybody knows how to do this?




Reply With Quote