D
DawnTreader
Hello
i have a form where i want it to drop information into a different table
based on a choice in the combo box. this was working but now it isnt. i am
getting an error of a key violation on the SQL line.
here is the sql:
sql = "INSERT INTO tblRMATracking (ServiceRepId, DateCreated, RMAStatusID)
VALUES (" & ServiceRepId & ", '" & Now() & "', 1)"
now in the table the field DateCreated which records when the record is
created has the property default value of "=Now()". is this "colliding" with
the "& Now() &" in the SQL?
any help appreciated.
i have a form where i want it to drop information into a different table
based on a choice in the combo box. this was working but now it isnt. i am
getting an error of a key violation on the SQL line.
here is the sql:
sql = "INSERT INTO tblRMATracking (ServiceRepId, DateCreated, RMAStatusID)
VALUES (" & ServiceRepId & ", '" & Now() & "', 1)"
now in the table the field DateCreated which records when the record is
created has the property default value of "=Now()". is this "colliding" with
the "& Now() &" in the SQL?
any help appreciated.