Marie,
I got your database. The main thing I found that I missed in your code above is your combo box controls were actually named MRNumber, LastName, and FirstName whereas the code called them cboMRNumber, cboLastName, and cboFirstName respctively.
The reason you were getting the Object required error is that the computer didn't have anything called cboMRNumber/cboLastName/cboFirstName, so it didn't know what your code was trying to manipulate. That's also why you were getting the empty criteria in the WHERE clause. The code was testing for whether cboMRNumber was Null, but it didn't exist, so it was Empty instead. _________
Rott Paws
...It's not a bug. It's an undocumented feature!!!