combo box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to know that when we use combo box to drop to choose the word whether we can make to look like:
A,B,B,C instead of
 
You mean you want the entries to be all in upper case? Base the combo box on
a query (not the table itself) and use the UCase function to convert the
words to upper case:

SELECT UCase([MyWord]) FROM MyTable ORDER BY MyWord

--
Doug Steele, Microsoft Access MVP

(No private e-mails, please)



Vuthy said:
I want to know that when we use combo box to drop to choose the word
whether we can make to look like:
 
Back
Top