Hi,
I am trying to INSERT date form fields form with that code:
where the fields are: "Value" (Short Text), "VersionDate" (Date/Time), "WhatsNew" (Long Text)
I am trying to INSERT date form fields form with that code:
Code:
CurrentDb.Execute "INSERT INTO 01_tblLocalVariables ( Value, VersionDate, WhatsNew ) " & _
"VALUES (" & Me.txtVersion & "", #" & Format(Me.txtVersionDate, "mm/dd/yyyy") & "#", '" & Me.txtWhatsNew & "')"