CAPS

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
 
S

Stuart McCall

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.
 
I

Iram

Dennis and Stewart, you guys are awesome!

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


Thanks.
Iram/mcp
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top