Microsoft
Software
Hardware
Network
Question : Questio on beforeupdate event to prevent duplicate record
I have a form that has 5 data fields: field 1, ... 5 (the form is bound to an external table). I added a module to prevent duplicate records being saved to database by checking three critical fields (field 1,...3) at UI level, i.e.:
Private Sub Form_BeforeUpdate(Cancel As Integer)
Dim updtRecs As Recordset
sql = "SELECT field1, field2, field3 FROM table ... WHERE ..."
Set updtRecs = CurrentDb().OpenRecordset(
sql)
If updtRecs.RecordCount <> 0 Then
MsgBox "Warning: Possible duplicate entry."
Cancel = True
End If
...
This works good for new records that contain changes on the three critical fields (feild 1, 2, 3). The problem is when users made change on another non-critical fields (field 4, field 5) on current existent record, the error message will still popup becuase updtRecs.RecordCount is not 0 in this case (since those three critical fields are not changed and is still in current table).
Any good quick fix on this issue so that when users edit and save current non-critical fields on existent records on the form, the validation will be skipped so that there is no such warning (of course, for the three critical fields, the validation is still there)?
I got advice that I could put the code in the before update events of the three fields instead of the form before update event. Is this the best solution? the problem is I have a long duplicate checking module (open and close a recordset, etc.), do I need to call this module everytime a critical field is changed? Thanks for the advice.
Answer : Questio on beforeupdate event to prevent duplicate record
For just 3 known fields you could do..
if me.field1<> me.field1.oldvalue or me.field2<> me.field2.oldvalue or me.field3<> me.field3.oldvalue then
' check for duplicates here
else
' don't bother
end if
Random Solutions
Mounting Images using IMAGEX
User-Level Security
Web Service or WCF? Current system uses thumb drives.
VB.net properties window not showing events
Excel opens to a gray screen on first launch
JQuery is disabled by partial postbacks
How to download computer certificate from certificate authority
Broken Reference to the file dao2535.tlb error message on opening Access Data Base created in Access 97
Direct Push not receiving unread emails
SBS 2008 Upgrade from W2003 Domain