Hi Mike,
the attached example may help - you'll probably need to modify it for your own db, but hopefully the principle will work for you. There's a simple form with a text box in which a text string is typed. As user types, the Key Up event is fired, which requeries the list box against the entered criteria
select * from tblYour table where txtField 1 Like "*" & [forms]![frmSearch]![txtSearch].[text] & "*"
It's the .[text] bit that makes it work (nb a fields .text value can only be referenced whilst it has focus)
Have a look and drop a post if you have any questions..
Kind regards,
Mongoose