Can Someone please this newbie.... what Im trying to accomlish here is with a click of a button on a form getting its data from a query, that the date field on the current record is changed to the current date.
Am I even close? Thanks in advance.. Steve
Dim db As DAO.Database
Dim rst As DAO.Recordset
Dim strSQL As String
strSQL = "SELECT * FROM [Shipto] WHERE [recieptno] = '" & Form_Carrier.RecieptNo
With rst
.Edit
.Fields("projected Install Date"
= CurrentDate
.Update
.Close
End With
Am I even close? Thanks in advance.. Steve
Dim db As DAO.Database
Dim rst As DAO.Recordset
Dim strSQL As String
strSQL = "SELECT * FROM [Shipto] WHERE [recieptno] = '" & Form_Carrier.RecieptNo
With rst
.Edit
.Fields("projected Install Date"
.Update
.Close
End With