I would like to setup an invisible textfield that is only visible when a particular label is clicked on.
i need help with coding.
I would like to setup an invisible textfield that is only visible when a particular label is clicked on.
i need help with coding.
Replace ClickLabel and Target Field with your actual names and use the code below:
Code:Private Sub Form_Current() TargetField.Visible = False End Sub Private Sub ClickLabel_Click() TargetField.Visible = True End Sub
Linq ;0)>
Thanks a lot
Glad we could help!
Linq ;0)>