G
Gino
Question:
Is Image control implemented differently in Access 2007 vs. previous Access
versions? Or is my installation of Access 2003 corrupt?
Here is the problem:
To display images in an image control, in an Access 2000/2003 report, I have
to use a roundabout way (see code below) because -in my systems- the property
tab for the image control does not show a Control Source (where I can set the
field containing path and file name).
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
Me.Image1.Picture = Me.JPGNo1
End Sub
This works to the extent that I can preview the images but when sent to the
printer all images in the report are blank.
Now in Access 2007 I find that the image control HAS a control source
property. So, by setting the control source to JPGNo1, (from an underlying
table), all images happily preview and print in forms and reports with no
problem -and no code- at all.
Is something wrong with my Access installation?
Am I missing some library or references?
How can I print the images that I can actually preview in the report?
Is Image control implemented differently in Access 2007 vs. previous Access
versions? Or is my installation of Access 2003 corrupt?
Here is the problem:
To display images in an image control, in an Access 2000/2003 report, I have
to use a roundabout way (see code below) because -in my systems- the property
tab for the image control does not show a Control Source (where I can set the
field containing path and file name).
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
Me.Image1.Picture = Me.JPGNo1
End Sub
This works to the extent that I can preview the images but when sent to the
printer all images in the report are blank.
Now in Access 2007 I find that the image control HAS a control source
property. So, by setting the control source to JPGNo1, (from an underlying
table), all images happily preview and print in forms and reports with no
problem -and no code- at all.
Is something wrong with my Access installation?
Am I missing some library or references?
How can I print the images that I can actually preview in the report?