Format Text Display

A

Allan

Please help.

I want to design fields that will automatically display
text in "Title" case no matter how they are typed in.
 
S

Steve Schapel

Allan,

In the AfteUpdate property of the control on your form, put an event
procedure like this...

Me.NameOfYourField = StrConv(Me.NameOfYourField, 3)

- Steve Schapel, Microsoft Access MVP
 
Top