Why are you using unbound controls?
You don't need the insert SQL statement. Simply need me!eddt_submitted_by=me.txtSubmitter
That said I see two issues with your SQL. First you've surrounded the date with quotes instead of hash tags.
Second your submitting the userID as a string, not a number, is that correct? I would usually expect the primary key field like userID to be an AutoNumber, in which case you don't surround a number datatype with quotes in SQL strings.
Code:
strSQL = "Insert Into tblDevelopment_Tracking (EDDT_Submitted_By, EDDT_Date_Submitted) VALUES (" & Me.txtSubmitter & ", #" & Me.txtSubmittedOn & "#);"
Which should evaluate to look like
Code:
strSQL = "Insert Into tblDevelopment_Tracking (EDDT_Submitted_By, EDDT_Date_Submitted) VALUES (1234, #12/25/2017#);"
It should NOT look like this:
Code:
strSQL = "Insert Into tblDevelopment_Tracking (EDDT_Submitted_By, EDDT_Date_Submitted) VALUES ('1234', '12/25/2017');"