The event procedure is "after update".. and I added the missing "end if"
Code:
Private Sub Auditor_ID_AfterUpdate()
If Not IsNull(Me.Auditor_ID.Value) Then
Auditor_ID.DefaultValue = """" & Me.Auditor_ID.Value & """"
End If
If Me.Auditor_ID.Value = "LR" Then
Me.Series_Master.Enabled = True
End If
End Sub
Private Sub Auditor_ID_AfterUpdate()
If Not IsNull(Me.Auditor_ID.Value) Then
Auditor_ID.DefaultValue = """" & Me.Auditor_ID.Value & """"
End If
If Me.Auditor_ID.Value = "LR" Then
Me.cboSeries_Master.Enabled = True
End If
End Sub
The "Auditor_ID" was all right, it was the "other control." (I was trying to set the ENABLE on the field name, not the control name.)