Copy the code below to a new module
Public Sub ALLUPPERCASE()
If IsNull(Screen.ActiveControl)=False Then
Screen.Activecontrol = StrConv(Screen.ActiveControl, vbUpperCase)
End If
End Sub
On the after_Update of the Textbox type the code
ALLUPPERCASE
This will force all input text to uppercase
IMO