Brians solution will work but I approach it a little differently using the code below:
CODE
Dim strPath As String
Dim strDir As String
If Nz(Len(Me.PlayLogo), 0) > 0 Then
strPath = CurrentProject.Path & "\PlayerLogo\" & Me.PlayLogo
strDir = Dir(strPath)
If Dir(strPath) <> "" Then
Me.ImgPlaylogo.Picture = strPath
Me.ImgPlaylogo.Visible = True
Me.LblplayLogo.Visible = False
End If
Else
Me.ImgPlaylogo.Visible = False
Me.LblplayLogo.Visible = True
End If
End Sub
The me.lblplaylogo is a label with No image Available as the text and becomes visible when there is no ImgplayLogo available.
Just another approach that may help of course your field name/s will be different and need changing
This is also placed in the On Current Event Procedure
John