Requery and sort a combobox

J

John Vinson

How do I requery and sort a combobox in ascending order?

Base the Combo on a sorted query, and use the Requery method:

Me!combobox.Requery

in VBA code (or in a macro).

What is its Rowsource property now? What's the context in which you
want to do this?
 
Top