G
Guest
I have a number of ck boxes on a form I want to do the following to...
Private Sub Form_Current()
If Me.CompleteCO = True Then
Me.ColorTarget.Visible = False
End If
If Me.CompleteCO = False Then
Me.ColorTarget.Visible = True
End If
End Sub
Is there a concise way to accomplish this?
Thanks!
(check box names)
CompleteDB
CompleteP
CompleteDS
CompleteB
CompleteS
(Text Box I want to change visiblity on)
DBTarget
PTarget
DSTarget
BTarget
STarget
Private Sub Form_Current()
If Me.CompleteCO = True Then
Me.ColorTarget.Visible = False
End If
If Me.CompleteCO = False Then
Me.ColorTarget.Visible = True
End If
End Sub
Is there a concise way to accomplish this?
Thanks!
(check box names)
CompleteDB
CompleteP
CompleteDS
CompleteB
CompleteS
(Text Box I want to change visiblity on)
DBTarget
PTarget
DSTarget
BTarget
STarget