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!

Upper Case in form

Status
Not open for further replies.

saustin

MIS
Feb 19, 2001
336
US
Hi All,
Am curious as to what others are doing to enforce uppercase in text box's on an entry form. Have formated the field to ">" in design mode but this still does not change the display of lower case text to upper on the form.
Other than using UCASE in BEFOREUPDATE is there a better option ? Thanks ! Steve.

Steve Austin
MIS Department
Helicopter Support, Inc.
(p): (203)795-6051 Ext. 3378
(f): (203)799-5020
 
Hi All,
Just answered my own question. You need to also put
a ">" in the format property on the entry form and the upper case problem is solved.

Steve.
 
Thanks Jeff ! Saw it , did it, works great !
Steve.
 
You can also use this, place it in the OnKeypress event of the control you want to set:

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

HTH Joe Miller
joe.miller@flotech.net
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top