TXT visible or NOT

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am sure this is easy just not for me! If this txt has a value I want it to
turn off the visibility on an unbound text92 target date. (Because it has
been fullfilled) I have this in many other areas (ck boxes) but I do not know
the syntax for a date #field.
I know it also probably has to go in the form current

Private Sub S_84_AfterUpdate()
If Me.S_84 = Date Then
Me.Text92.Visible = False
End If
End Sub

Thanks!
 
Private Sub S_84_AfterUpdate()
If IsDate(Me.S_84) Then
Me.Text92.Visible = False
End If
End Sub
 
perfect Thanks!

ruralguy via AccessMonster.com said:
Private Sub S_84_AfterUpdate()
If IsDate(Me.S_84) Then
Me.Text92.Visible = False
End If
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top