Hi!
I have data returned from a database displayed on a webpage for amending.
A date on the form is selected using a pop-up calendar which returns it to Access. When the date is retrieved the dateFormat function is used to display it as dd/mm/yyyy.
However, when I run an update query, allowing the user to change any field and refind the record, the date is always changed to 30/12/1899.
Is there a problem with my update query?
update tblWorkshops
set WORecdate = #form.WORecdate #,
where ID = #ID#
I have not used createODBCdate( variable_Name) as I don't know where it needs to be created (ie on the cfm webpage or the action script that updates the database).
Thanks!
Neil
I have data returned from a database displayed on a webpage for amending.
A date on the form is selected using a pop-up calendar which returns it to Access. When the date is retrieved the dateFormat function is used to display it as dd/mm/yyyy.
However, when I run an update query, allowing the user to change any field and refind the record, the date is always changed to 30/12/1899.
Is there a problem with my update query?
update tblWorkshops
set WORecdate = #form.WORecdate #,
where ID = #ID#
I have not used createODBCdate( variable_Name) as I don't know where it needs to be created (ie on the cfm webpage or the action script that updates the database).
Thanks!
Neil
Comment