I might be on the wrong track here, but might the combobox wizard be able to do this?
This assumes the form has the table you wan't to search as recordsource.
When using the wizard, first select the "Find a record on my form..." variant, select the relevant fields (id and for instance prodname), in the next step of the wizard is the option to hide or not the key column.
With a check mark, you'll be able to search by prodname (type or select)
Uncecked, the combo will allow you to type the prodid (or select)
- and if match, display the complete record in the form.
This will happen on the after update event of the combo. If you want it to happen on a command button click, copy/paste the code from the combos update event to the buttons on click event. If you wan't the search control to be a textbox, then use a reference to the textbox control in stead of the combo.
HTH Roy-Vidar