Not sure what I'm missing here!
DataType Mismatch Error
PHP:
Dim strSQL As String 'Add Absence Data to tblHour.
strSQL = "INSERT INTO tblHour (WorkDate,EmployeeID,Hours) "
strSQL = strSQL & "VALUES (#" & Me.AbsenceDteTo & "#, '" & Me.EmployeeID & "', '" & Me.txtAbsHrs & "')"
CurrentDb.Execute strSQL, dbFailOnError
tblEmployeeTime
Hours is a Number Double
WorkDate is a Date/Time ShortDate
EmployeeID is a Number/FakeKey LongInteger
tblHour
EmployeeID Number LongInteger
Hours Number Double
WorkDate Date/Time ShortDate