M
MartinR
I want to write an IF statment that will make a obj control box appear
only if there exists a picture for that record. Ie i want to know what
Null expression i can use to distinguish if the picture exists or not.
At the moment, this is the code i am using, but i am getting run time
error '424'....object required .....when i go to run it.
If Me![Picture3] Is Null Then
Me![Picture3].Visible = False
Else
Me![Picture3].Visible = True
End If
The first line of code is where the error is.
Can someone throw some light on my problem,
Thanks
only if there exists a picture for that record. Ie i want to know what
Null expression i can use to distinguish if the picture exists or not.
At the moment, this is the code i am using, but i am getting run time
error '424'....object required .....when i go to run it.
If Me![Picture3] Is Null Then
Me![Picture3].Visible = False
Else
Me![Picture3].Visible = True
End If
The first line of code is where the error is.
Can someone throw some light on my problem,
Thanks