I have placed the following code in the AfterUpdate event of all text fields:
Me.FieldName = StrConv([FieldName], vbUpperCase)
Typed text in all the fields where this code has been placed gets converted to UpperCase, except the field 'Name'. In this 'Name' field, I get the following message :
Run-time error '2135':
This property is read-only and can't be set.
Any solution?
Me.FieldName = StrConv([FieldName], vbUpperCase)
Typed text in all the fields where this code has been placed gets converted to UpperCase, except the field 'Name'. In this 'Name' field, I get the following message :
Run-time error '2135':
This property is read-only and can't be set.
Any solution?