G
Gino
I hope somebody can assist me with this problem.
In a report, I have some fixed text and two image controls.
The image controls correctly display the images in preview but, when
printing the report, only the text gets printed and the image frames are
totally blank.
The images get generated at preview runtime, by setting the image content to
the path/file information stored in me.JPGNo1 and me.JPGNo2.
I inserted the code, as shown below, at every level in the Details section,
but the images never get printed.
Any idea why. How can I solve the problem?
Thank you very much everybody for any suggestion.
____________________________________________________
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
Me.Image1.Picture = Me.JPGNo1
Me.Image2.Picture = Me.JPGNo2
End Sub
Private Sub Detail_Print(Cancel As Integer, PrintCount As Integer)
Me.Image1.Picture = Me.JPGNo1
Me.Image2.Picture = Me.JPGNo2
End Sub
Private Sub Detail_Retreat()
Me.Image1.Picture = Me.JPGNo1
Me.Image2.Picture = Me.JPGNo2
End Sub
In a report, I have some fixed text and two image controls.
The image controls correctly display the images in preview but, when
printing the report, only the text gets printed and the image frames are
totally blank.
The images get generated at preview runtime, by setting the image content to
the path/file information stored in me.JPGNo1 and me.JPGNo2.
I inserted the code, as shown below, at every level in the Details section,
but the images never get printed.
Any idea why. How can I solve the problem?
Thank you very much everybody for any suggestion.
____________________________________________________
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
Me.Image1.Picture = Me.JPGNo1
Me.Image2.Picture = Me.JPGNo2
End Sub
Private Sub Detail_Print(Cancel As Integer, PrintCount As Integer)
Me.Image1.Picture = Me.JPGNo1
Me.Image2.Picture = Me.JPGNo2
End Sub
Private Sub Detail_Retreat()
Me.Image1.Picture = Me.JPGNo1
Me.Image2.Picture = Me.JPGNo2
End Sub