G
Guest
I am trying to make a line hidden or visible based upon the value of a text
field. My code isn't working. It is my goal that is text57 returns the
value of "Closed" then the line is hidden - if not then it is visible. Any
help is appreciated.
Private Sub Form_Current()
If Me.Text57.Text = Closed Then
Me.Line65.Visible = False
Else
Me.Line65.Visible = True
End If
End Sub
field. My code isn't working. It is my goal that is text57 returns the
value of "Closed" then the line is hidden - if not then it is visible. Any
help is appreciated.
Private Sub Form_Current()
If Me.Text57.Text = Closed Then
Me.Line65.Visible = False
Else
Me.Line65.Visible = True
End If
End Sub