Duplicate record

L

L

I am creating an online database for data entry. Is there a way for me to
check
for duplication before the user adds the duplicate record to the database?
 
S

Stefan B Rusynko

Yes
Open the DB recordset using a Select for that record and check for EOF
If rs.EOF Then
'no dupe
Else
'dupe
End If
'close rs



|I am creating an online database for data entry. Is there a way for me to
| check
| for duplication before the user adds the duplicate record to the database?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top