Combo Box - Select all/ Select none

  • Thread starter Barkley via AccessMonster.com
  • Start date
B

Barkley via AccessMonster.com

I have a form with a couple combo boxes on them that I am using as criteria
for a query's parameters... I have the path and name of the combo boxes as my
query's criteria... all that is working fine... now what I am wanting to do
is to have an option to 'select or unselect all' from the combo box... any
ideas are always appreciated...

Thanks
 
K

KARL DEWEY

Set the combo box default to Null.
Have criteria ---
[Forms]![YourFormName]![ComboName] OR Is Null
 
K

KARL DEWEY

Fast fingers --- needs to be this --
[Forms]![YourFormName]![ComboName] OR [Forms]![YourFormName]![ComboName]
Is Null

--
KARL DEWEY
Build a little - Test a little


KARL DEWEY said:
Set the combo box default to Null.
Have criteria ---
[Forms]![YourFormName]![ComboName] OR Is Null
--
KARL DEWEY
Build a little - Test a little


Barkley via AccessMonster.com said:
I have a form with a couple combo boxes on them that I am using as criteria
for a query's parameters... I have the path and name of the combo boxes as my
query's criteria... all that is working fine... now what I am wanting to do
is to have an option to 'select or unselect all' from the combo box... any
ideas are always appreciated...

Thanks
 
B

Barkley via AccessMonster.com

Thanks Karl... you guys on here are great... some of the info I have picked
up has been invaluable to me... rogersaccesslibrary is another site I have
recently been frequenting... it seems really good as well... thanks again


KARL said:
Fast fingers --- needs to be this --
[Forms]![YourFormName]![ComboName] OR [Forms]![YourFormName]![ComboName]
Is Null
Set the combo box default to Null.
Have criteria ---
[quoted text clipped - 7 lines]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top