I want to change the value of a combo box on a main form based on the update of a combo box on a subform. I have the following:
Private Sub cmbSubCombo_AfterUpdate()
If Me.SubCombo.Value = 1 Then
Me.Parent!cmbMainCombo.Value = 1
Me.Parent!cmbMainCombo.Locked = True
If...