I have a form with mulitple combo boxes that populates criteria in a query. I want to add a button to clear the selections in all of the combo boxes. What code do I use?
Thanks!
Thanks!
Dim ctl As Control For Each ctl In Me.Controls If ctl.ControlType = acComboBox Then ctl.Value = Null End If Next
Comment