CAPS

  • Thread starter Thread starter Iram
  • Start date Start date
I

Iram

Hello,
Is there anyway that I can place a rule on a field or on a form to make the
data that is entered into CAPS letters?


The data is looking really ugly with uppers and lowers....


Thanks.
Iram/mcp
 
Iram said:
Hello,
Is there anyway that I can place a rule on a field or on a form to make
the
data that is entered into CAPS letters?


The data is looking really ugly with uppers and lowers....


Thanks.
Iram/mcp

Put the following code into the keypress event of your textbox:

KeyAscii = Asc(UCase(Chr(KeyAscii)))

That will convert anything entered into upper case as the user types.
 
Dennis and Stewart, you guys are awesome!

I don't know what I would do with out this newsgroup!


Thanks.
Iram/mcp
 
Back
Top