I am trying to set my form so when the user enters info in the field it turns to caps only.
When I enter the text I get an runtime error 2115 The function in before update is preventing access from saving data in the field. Any help is appreciated
Tom
When I enter the text I get an runtime error 2115 The function in before update is preventing access from saving data in the field. Any help is appreciated
Tom
Code:
Private Sub txtClient_BeforeUpdate(Cancel As Integer)
'Me!txtClient = UCase(Me!txtClient)
End Sub