D
Dave
Access 2003
I have a label that I want to hide based upon certain conditions.
Those conditions are that 3 check box fields are checked (true). All 3 must
be checked for the label to NOT be visible.
There is a drop down on the same form that allows you to navigate records.
I am trying to code this on the Update event of that drop down (And I am
guessing there are other places I will need this code.
This is what I am trying (for just one being checked) but it does not seem
to work consistently)
Private Sub cboSearchByName_AfterUpdate()
If Transcripts = True Then
lblconditional.Visible = False
Else
lblconditional.Visible = True
End If
End Sub
The other 2 fields that need to be true are
Application = True
Agreement = true
Can someone help me code this properly
Thanks
Dave
I have a label that I want to hide based upon certain conditions.
Those conditions are that 3 check box fields are checked (true). All 3 must
be checked for the label to NOT be visible.
There is a drop down on the same form that allows you to navigate records.
I am trying to code this on the Update event of that drop down (And I am
guessing there are other places I will need this code.
This is what I am trying (for just one being checked) but it does not seem
to work consistently)
Private Sub cboSearchByName_AfterUpdate()
If Transcripts = True Then
lblconditional.Visible = False
Else
lblconditional.Visible = True
End If
End Sub
The other 2 fields that need to be true are
Application = True
Agreement = true
Can someone help me code this properly
Thanks
Dave