Hi Brad,
You can update the table itself in the background and then refresh the form to show the flag. For example, you can use an UPDATE query to flag the record in the table, such as:
CurrentDb.Execute "UPDATE TableName SET FlagField=True WHERE ID=" & Me.ID
Hope it helps...