G
Guest
want to update a date in a entry in a table called ApmUpdateDate(which only
has one field and one entry - LastUpdateDate)
would like to update it with todays current date when i click on a button
and run the code.need help please
this is my code....
Dim Olddate As DAO.Recordset
Set Olddate = dbs.OpenRecordset("ApmUpdateDate")
Dim datenow As Date
datenow = Now()
With Olddate
.Edit
LastUpdatedate = datenow
End With
has one field and one entry - LastUpdateDate)
would like to update it with todays current date when i click on a button
and run the code.need help please
this is my code....
Dim Olddate As DAO.Recordset
Set Olddate = dbs.OpenRecordset("ApmUpdateDate")
Dim datenow As Date
datenow = Now()
With Olddate
.Edit
LastUpdatedate = datenow
End With