S
Scientific
Hi,
I want to be able to set the visible property on a lable to false when a
control looses the focus. For example, when my combo named cboFirstName
looses focus I want to make the visible property on my label "lblDetails."
equal to false in the same module. What do I need to add to the code below:
Private Sub cboFirstName_GotFocus()
Me.lblDetails.Visible = true
End Sub
I want to be able to set the visible property on a lable to false when a
control looses the focus. For example, when my combo named cboFirstName
looses focus I want to make the visible property on my label "lblDetails."
equal to false in the same module. What do I need to add to the code below:
Private Sub cboFirstName_GotFocus()
Me.lblDetails.Visible = true
End Sub