In my report I have a en embedded photo field which basically looks up a photo in the local drive and drops it into the report. Whole thing works good. The only issue is when I fire off the report, I can see message 'importing xxx.jpg from file path.
Is there a way I could suppress this message. I am using following code and tried echo and painting option but no luck.
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
Application.Echo False
'Me.Painting = False
Me.ImgStock.Picture = pathname & Me.Photo
'Me.Painting = True
Application.Echo True
End Sub
Is there a way I could suppress this message. I am using following code and tried echo and painting option but no luck.
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
Application.Echo False
'Me.Painting = False
Me.ImgStock.Picture = pathname & Me.Photo
'Me.Painting = True
Application.Echo True
End Sub