O
Opal
Running Access 2003. I would like to make an
unbound textbox visible only when the value in
another text box is met. I have created a
continuous form with 5 bound checkboxes
and one bound text box called [StartAuto].
I want the unbound textbox to act as a border
around the 5 checkboxes and to be visible only
when the value in the [StartAuto] text box =
"All Safe in this Section"
I have tried:
Private Sub Form_Current()
If Len([StartAuto] & "") = "All Safe in this Section" Then
Me.Border5.Visible = True
Else
Me.Border5.Visible = False
End If
End Sub
And it does not work. I have tried conditional
formatting using an expression and it does not
work.
Can anyone help me achieve my goal?
Thank you.
unbound textbox visible only when the value in
another text box is met. I have created a
continuous form with 5 bound checkboxes
and one bound text box called [StartAuto].
I want the unbound textbox to act as a border
around the 5 checkboxes and to be visible only
when the value in the [StartAuto] text box =
"All Safe in this Section"
I have tried:
Private Sub Form_Current()
If Len([StartAuto] & "") = "All Safe in this Section" Then
Me.Border5.Visible = True
Else
Me.Border5.Visible = False
End If
End Sub
And it does not work. I have tried conditional
formatting using an expression and it does not
work.
Can anyone help me achieve my goal?
Thank you.