Problem when prevent duplicate date being entered.

awiezzz

New member
Local time
Tomorrow, 06:51
Joined
Jun 16, 2004
Messages
9
Hi,
I have Staff Detail and Leave Detail. One staff has many leave details. I want to check if the staff has duplicate leave details. I have StaffNo and StaffName in [Staff Detail] and StaffNo,StartDate,EndDate and LeaveCode in [Leave Detail]. Both linked by StaffNo.
This is the code,
Code:
Private Sub STARTDATE_BeforeUpdate(Cancel As Integer)
Dim stLinkCriteria As String
Dim rsc As DAO.Recordset
Set rsc = Me.RecordsetClone
stLinkCriteria = "[STARTDATE]=" & "'" & Me.STARTDATE.Value & "'"    
If DCount("STARTDATE", "LEAVE DETAIL", stLinkCriteria) > 0 Then        Me.Undo        
MsgBox "Warning", vbInformation, "Duplicate Information"        
rsc.FindFirst stLinkCriteria        
Me.Bookmark = rsc.Bookmark    
End If
Set rsc = Nothing
End Sub

But there was an error,
Data type mismatch in criteria expression.

The error is here,
Code:
If DCount("STARTDATE", "LEAVE DETAIL", stLinkCriteria) > 0 Then

Any idea? thanx in advance..;)
 
stLinkCriteria = "[STARTDATE]= '" & Me!STARTDATE & "'"

Or

stLinkCriteria = "[STARTDATE]= #" & Me!STARTDATE & "#"

???
kh
 

Users who are viewing this thread

Back
Top Bottom