Hi all,
I have a textbox that I want to search a field in a table for what ever Ingredient is typed into the textbox, then populate a combobox with all the recipe names that have that Ingredient in them.
I am using the code below but it keeps giving me an error
Any help on this would be appreciated.
Code:Private Sub CmdSearch_Click() Me.txtSearch = DLookup("Table1", "rcpIngredients", "RcpName = CmbSearch") End Sub