> Hello "Ryan".
>
[quoted text clipped - 13 lines]
> AfterUpdate event procedure (of combo 1) or the LinkChildFields and
> LinkMasterFields properties of the subform control?
Hello Ryan.
>>> I have 2 combo boxes on a form with the relevant information
>>> being displayed in the subform. The selection in the 1st combo
[quoted text clipped - 6 lines]
>>> this makes a difference?) Any help is greatly appreciated to get
>>> the second combo box to filter properly.
>> You did not tell us how the filter is meant to be applied to the
>> subform. Are you using the filter property of the subform in the
>> AfterUpdate event procedure (of combo 1) or the LinkChildFields
>> and LinkMasterFields properties of the subform control?
> I am using the LinkChildFields and LinkMasterFields properties of
> the subform control.
First: As I understand it, teh main form schould mot be bound to a
table at all.
Second: Use both properties of the subform control for both combos:
LinkChildFields: FieldRelatedToComboBox1;FieldRelatedToComboBox2
LinkMasterFields: ComboBox1.Value;ComboBox2.Value

Signature
Regards,
Wolfgang
Wolfgang Kais - 08 May 2008 21:52 GMT
Sorry Ryan.
I wrote:
LinkMasterFields: ComboBox1.Value;ComboBox2.Value
This should be:
LinkMasterFields: ComboBox1;ComboBox2
(wipe out .Value)

Signature
Regards,
Wolfgang