Depending on the value of my combo box, I would like to make alternate text/combo boxes visible/invisible. No errors, it just doesn't work. Package_Type is the name of my combo box.
Select Case Me.Package_Type
Case "Extension"
Me.Extension_Length.Visible = True
Case Else
End Select





