I am using Access 97 and trying to get a checkbox named "RegistersUpdateUser" to update on a mainform when a selection "Registers Updates" is made from a combo box named "ContactType" on a sub form. This is the VBA code I am using on the subform but nothing is happening:
Private Sub Form_AfterUpdate()
If Me.ContactType = "Registers Updates" Then
Me.Parent![RegistersUpdateUser] = "Yes"
End If
End Sub
I would appreciate your advice. Thanks
Private Sub Form_AfterUpdate()
If Me.ContactType = "Registers Updates" Then
Me.Parent![RegistersUpdateUser] = "Yes"
End If
End Sub
I would appreciate your advice. Thanks