I want to display a label only when a specific textbox or combobox has focus.
When it loses focus, I want the label to no longer be visible.
This code I have does not work:
Private Sub UserForm_Click()
If Me.ActiveControl = Me.cmbOnbIntResult Then
Label1.Visible = True...