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 gkittelson 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
Nov 20, 2002
10
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top