I have a list box populated by a query, which in turn is populated by a text box - a custom made search tool basically.
I want to create a drop down, or maybe a series of buttons to enable someone to change the sorted column, and sort type.
Most tutorials on the internet tell me to edit the query directly, but there must be a way to choose the sorting method from outside of a query.
I have a feeling it has something to do with turning the query into a SQL, and amending the
to add a variable, but how will I link it to a drop down box?? Or interchange between ACC and DESC??
I want to create a drop down, or maybe a series of buttons to enable someone to change the sorted column, and sort type.
Most tutorials on the internet tell me to edit the query directly, but there must be a way to choose the sorting method from outside of a query.
I have a feeling it has something to do with turning the query into a SQL, and amending the
Code:
ORDER BY tblCustomers.CustomerID DESC;