How 'dumb' do I have to go?
strMyString = StrConv(strMyString, vbPropercase)
StrConv is a function that returns a converted string
strMyString is the field your want to convert to 'proper case'
vbProperCase is the code to tell it to do just that.
Do you just want to display the converted...