One way you might consider is to use VBA code to create an SQL string [Eg: strSQL] that contains an update statement.
Then use the Docmd.RunSQL strSQL to execute the update statement.
Or - this simple snippet might help.
Code:
Private Sub cmdUpdateRecord_Click()Dim db As Database
Set db = CurrentDb
db.Execute "UPDATE [Copy Of 12-09-2011] SET [Chosen] = True WHERE ID = " & Combo35
End Sub
In the db.Execute statement - the value is taken from the Combo35 field of the Form.
You might also read up here.
http://msdn.microsoft.com/en-us/libr...ffice.12).aspx
Let us know if you have any questions.