hi
i have a combo box in continuous form is there a way that i can filter the combo as i write in it?
i have a combo box in continuous form is there a way that i can filter the combo as i write in it?
Dim ComboContents as Variant ComboContents = Me![name of your combo control] If IsNull(ComboContents) then Me.Filteron = False ' cancel filter if combo cleared else Me.Filter = "[name of the field you want to filter] Like *" & ComboContents & "*" Me.Filteron = True end if
Comment