PennyPitSt0p
Access 2000 Amateur
- Local time
- Today, 16:40
- Joined
- Mar 2, 2006
- Messages
- 16
OK, I have a field (info_updated) on my form (precall_form_view) that I only want to be visible on the form when the value in that field is not null.
I have looked through the forums, and I can not seem to find an example that is like what I am looking for. It may be in there, but sometimes what I call things are not what they are really called....
Here is my code, but when I use it, I never see the field.
I am sure that it is a logic error, and I am too close to see it, but can someone look and advise?
Thanks!
Private Sub Form_Current()
If Info_Updated = Not Null Then
Info_Updated.Visible = True
Else
Info_Updated.Visible = False
End If
End Sub
I have looked through the forums, and I can not seem to find an example that is like what I am looking for. It may be in there, but sometimes what I call things are not what they are really called....

Here is my code, but when I use it, I never see the field.
I am sure that it is a logic error, and I am too close to see it, but can someone look and advise?

Thanks!
Private Sub Form_Current()
If Info_Updated = Not Null Then
Info_Updated.Visible = True
Else
Info_Updated.Visible = False
End If
End Sub