Cordeiro82
MIS
Hello All,
How would you make the visibility of txtboxA dependant on a value in txtboxB, so that txtboxA is only visible when txtboxB displays the value "Yes".
thanks,
kevin
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub txtBoxB_BeforeUpdate(Cancel As Integer)
If txtBoxB = "yes" Then txtBoxA.Visible = True
End Sub
Private Sub Form_Current()
If txtBoxB = "yes" Then
txtBoxA.Visible = True
Else
txtBoxA.Visible = False
End If
End Sub