text box case sensitive problem

R

rigby

hi
my PC is giving problems now, so if i am repeating this post, please ignore
it. BUT my problem still stands. i have a pre-made DB where certain textbox's
keep changing my text input into lower case when i want it in upper case. the
appropriate fields have empty input masks. i have tried creating my own input
masks, but it doesnt change. please can someone help me>???

RIGBY
 
R

Rick Brandt

rigby said:
hi
my PC is giving problems now, so if i am repeating this post, please
ignore it. BUT my problem still stands. i have a pre-made DB where
certain textbox's keep changing my text input into lower case when i
want it in upper case. the appropriate fields have empty input masks.
i have tried creating my own input masks, but it doesnt change.
please can someone help me>???

RIGBY

Disable Office AutoCorrect on the control.
 
P

PMK

You could try entering the following in the after update event procedure

FieldName = StrConv(FieldName, vbUpperCase)

HTH

PMK
 
Top