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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Formatting the Combobox's drop-down list

Status
Not open for further replies.

Arjay418

Programmer
Oct 18, 2002
86
US
Hi,

Is there a way to make sure that all the entries in a combo box's drop down list display in all capitals? The query that populates that list has entries in both ALL CAPS and Proper Capitalization. I'd just like them to all show the same way.

The list is based on a query, and the underlying table has the format set to >.

Thanks,
rj
 
Change the query that is the source to something like:

Select FirstName, Ucase(LastName), Age from TableXYZ.

35+ years of 'progress' -- can't we all just go wire boards again?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top