Hi,
I need the text in the field to allow both lower and upper case but when the user enters "i" (only 1) it changes to "I" , "ii" works just fine.
How can I stop this??
I guess I could write an event code like:
Dim LowerCase, UpperCase
UpperCase = Me![FieldName]
LowerCase = LCase(UpperCase)
If Me.[FieldName].Value = "i" Then
Me![FieldName].Value = LowerCase
Else...
Any other ideas????
Thanks
Paul
I need the text in the field to allow both lower and upper case but when the user enters "i" (only 1) it changes to "I" , "ii" works just fine.
How can I stop this??
I guess I could write an event code like:
Dim LowerCase, UpperCase
UpperCase = Me![FieldName]
LowerCase = LCase(UpperCase)
If Me.[FieldName].Value = "i" Then
Me![FieldName].Value = LowerCase
Else...
Any other ideas????
Thanks
Paul