I need to apply vbProperCase to just the first letter of every sentence in the string, and not to every word in the string:
VB Code:
  1. myString = "thIs is A TesT. JUSt a tESt."
  2. myString = StrConv(myString, vbProperCase)
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."
Anybody knows how to do this?