Do you mean not to display any records on a form until after the user selects an option on the combobox which filters the records in the forms record source?
Your form on load could have this set
Me.Filter = "(False)"
Me.FilterOn = True
then when you use the cbo ... after update .. you would need
Me.filter = yourcriteriastring
Me.FilterOn = True