List Box multiple selections

  • Thread starter Thread starter Eduardo
  • Start date Start date
E

Eduardo

How to make multiple selections when usen a list box to
set the parameters to run a select query.

In other words, using a list box in a form that drives a
select query, I need to be able to select several
criteria from the list to use those selections to report
multiple choices.

Thanks
 
Eduardo said:
How to make multiple selections when usen a list box to
set the parameters to run a select query.

In other words, using a list box in a form that drives a
select query, I need to be able to select several
criteria from the list to use those selections to report
multiple choices.

I suspect you will have to build that in code.

In most cases however you can add a yes/no field and use a subform to
achieve the results.
If you add a "select all" and "clear all" button that runs queries to do
what they say it works quite well.
In all the cases where I have used this the fact that the selection is
maintained over sessions is valued by the client.
 
Back
Top