Based on other bits of code I've found for this issue, I have this code on the After Update event of the first control (combo box POI in which "Hail" is in the set) but regardless of the input with this code, there is no change in control "Measuremen ts". Please help show me what I'm missing.
Thanks!
Code:
Private Sub POI_AfterUpdate() If (Me.POI = "Hail") Then Me.Measurements.Enabled = False Else Me.Measurements.Enabled = True End If End Sub
Comment