If all you want to do is *see* the text in uppercase, add the greater-than
symbol ( > ) to the control's Format property. However, if you actually want
to change the text to uppercase, then add the followng to the control's
AfterUpdate event:
Me.txtMyText = UCase(Me.txtMyText)
Regards,
Graham R Seach
Microsoft Access MVP
Sydney, Australia