Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Default ot upper case

Status
Not open for further replies.

ronh42

Programmer
Joined
Nov 20, 2002
Messages
10
Location
US
How do I get a column to default to upper case?
 
Hello Ron

In table design you can use > in the Format property but this is just a format - it does not change the underlying data. I think you would have to remember to use the format in all your reports.

I use the UCASE$ function in a form's text box afterupdate event

e.g. where a textbox has the name txtPostcode the code would be

txtPostcode=UCASE$(txtPostcode)

Thanks

Michael
 
Thanks, I can make it work.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top