I have the following in a update query
Is it possible to change this to VB code so it can be called by a button, the other problem is that it updates all records and i am trying to get it to update the record on the screen only,
Code:
UPDATE [Alarm List] SET [Alarm List].[Letter Sent] = 1, [Alarm List].[Letter Date] = Date(), [Alarm List].[Note] = "Service Letter Printed"
WHERE ((([Alarm List].[Letter Date]) Is Null));
Is it possible to change this to VB code so it can be called by a button, the other problem is that it updates all records and i am trying to get it to update the record on the screen only,