I am working on an Access Form with a series of ComboBoxes on the screen.
There are three main ComboBoxes that list Owner, Product and Color. What I
am looking to do is to fitler the options in each ComboBox depending on your
selection criteria. For instance, when you select Owner the number of
products filter in the Product ComboBox to only those that the selected
Owner has access to to. When an Product is select only the colors for the
product are presented.
Thanks for any help.

Signature
Matthew David
PH: 920.475.2972
FAX: 775.239.8171
mdavid@matthewdavid.ws
Douglas J. Steele - 27 Dec 2005 19:43 GMT
You need to put code in the AfterUpdate event of combobox 1 to dynamically
generate the SQL for the row source of combobox 2.
http://www.mvps.org/access/forms/frm0028.htm at "The Access Web" has an
example of this.
And, FWIW, this really has nothing to do with
microsoft.public.access.3rdpartyusrgrp or
microsoft.public.access.activexcontrol. The first is for questions about 3rd
party controls or user groups for Access, and the second is for questions
about using ActiveX controls in Access.

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
>I am working on an Access Form with a series of ComboBoxes on the screen.
> There are three main ComboBoxes that list Owner, Product and Color. What I
[quoted text clipped - 6 lines]
>
> Thanks for any help.
RobFMS - 17 Jan 2006 14:37 GMT
Matthew
Follow this tip and it should provide you the guidance you need.
Tip #16: Data in a combo box control on a continuous form/datasheet
disappears
http://www.fmsinc.com/free/tips.html#tip16foraccess
HTH

Signature
Rob Mastrostefano
FMS Professional Solutions Group
http://www.fmsinc.com/consulting
Software Tools for .NET, SQL Server, Visual Basic & Access
http://www.fmsinc.com
>I am working on an Access Form with a series of ComboBoxes on the screen.
> There are three main ComboBoxes that list Owner, Product and Color. What I
[quoted text clipped - 6 lines]
>
> Thanks for any help.
Ron2005 - 17 Jan 2006 21:18 GMT
You do not have to dynamically create the query.
You can also have the query predefined for the 2nd combo box (pointing
to the form![combobox1] as criteria) but in the afterupdate event of
the first combo, issue a requery of the second combobox.
Ron