Try this:
If UCase$(Text1.Text) = "RED" Then Text2.BackColor= VBRed
That way, whatever the case typed in will be converted to uppercase before the "IF" comparison.
Cheers!®©
Main Topics
Browse All Topics hi experts
i want to know how to make a textbox ignore caps or non caps
example
if i write
if text1.text="red"then
text2.backcolor= vbred
now if i write red only then i will get the
result how can i get the same result by writing
RED or Red or rED.
i will be really thankful if u answer me.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Or intercept the keystrokes and force them to either upper or lower case in the KeyPress event or the Change event. If you don't want the actual etxt to appear in upper/lower case, you could also transfer the upper/lower-cased version into either the tag property or a separate module-level variable.
It all depends on where you prefer to do the bulk of your overhead: on entry (as with my idea), or in the processing portion (as with the previous comments.)
Business Accounts
Answer for Membership
by: bruintjePosted on 2002-06-28 at 14:24:23ID: 7117305
Hi HIKER,
use something like
if lcase(text1.text) ="red"then text2.backcolor= vbred
HAGD:O)Bruintje