P
Paul Mars
Form can be opened with several different RecordSources as:
DoCmd.OpenForm "MainData"
Forms!MainData.RecordSource = "RecordsAddress"
DoCmd.OpenForm "MainData"
Forms!MainData.RecordSource = "RecordsAddressChildren"
DoCmd.OpenForm "MainData"
'default RecordSource is AllRecords
When click "Filter By Form" on toolbar, the dropdown choice for each Form
control displays all values from the original Form RecordSource
"AllRecords". Although, if a value is selected that does not exist in the
current recordSource, it will not display when "Apply Filter".
I need the dropdown choices to be limited to the current RecordSource. How
can I do this?
tks,
Paul
DoCmd.OpenForm "MainData"
Forms!MainData.RecordSource = "RecordsAddress"
DoCmd.OpenForm "MainData"
Forms!MainData.RecordSource = "RecordsAddressChildren"
DoCmd.OpenForm "MainData"
'default RecordSource is AllRecords
When click "Filter By Form" on toolbar, the dropdown choice for each Form
control displays all values from the original Form RecordSource
"AllRecords". Although, if a value is selected that does not exist in the
current recordSource, it will not display when "Apply Filter".
I need the dropdown choices to be limited to the current RecordSource. How
can I do this?
tks,
Paul