I am using this code to display images,
If the image is a JPG it displays in the default viewer without an error message
If the image is a raw, .nef, image I get the error message below.
Is there a way to stop this message?
Code:
Public Sub showPic(str As String)
DoCmd.SetWarnings False
Application.FollowHyperlink str
DoCmd.SetWarnings True
End Sub
If the image is a JPG it displays in the default viewer without an error message
If the image is a raw, .nef, image I get the error message below.
Is there a way to stop this message?