View Full Version : Image Visible/Invisible in Report


korado
10-23-2003, 03:37 AM
Hello,

I have the following question:

Is it possible to have a picture in the report detail srection which is printed only if a certain field(Textbox) is empty.

Thanks in advance
korado

Rich
10-23-2003, 05:25 AM
Something like
If IsNull(Me.SomeControl) Then
Me.MyPicture.Visible = True
Else
Me.MyPicture.Visible = False
End If