i have a textbox above the combo box to filter: txtFlt
when user enters the filter string, switch source queries of the combo
the query sql is like:
qsFilterRecs = "select * from table where [Acct] like '*" & txtFlt & "*'"
'the AfterUpdate event for the filter:
sub txtFlt_Afterupdate()...