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 field in a form?
In the Current Event of the form use:
Me.strMyString = StrConv(Me.strMyString, vbProperCase)
In a query:
Put in the field part:
MyNewString:StrConv(strMyString,3)
3 is the code for vbProperCase
p.s. Are you enjoying the rain and snow?