I cannot get a picture to show in my report.
I have a tblpictures
[pre]Field 1 pictureid
Field 2 picturename
Field 3 picture <-- this shows as a paperclip in table[/pre]
I have an attachment control with control source
It does not work
Have also tried
Property of "Display As" is Image/icon
it shows an emtpy box. Table name is correct and fieldname is correct. Have replace . with ! and that had no affect.
When I run an sql datasheet view on
I get the paperclip in a cell and can double click to open
What I am I doing wrong.
Thanks
Chris
I have a tblpictures
[pre]Field 1 pictureid
Field 2 picturename
Field 3 picture <-- this shows as a paperclip in table[/pre]
I have an attachment control with control source
Code:
"SELECT tblpictures.picture.FileData
FROM tblpictures
WHERE (((tblpictures.[picturename])='corrosive'))"
It does not work
Have also tried
Code:
"SELECT tblpictures.picture
FROM tblpictures
WHERE (((tblpictures.[picturename])='corrosive'))"
Property of "Display As" is Image/icon
it shows an emtpy box. Table name is correct and fieldname is correct. Have replace . with ! and that had no affect.
When I run an sql datasheet view on
Code:
"SELECT tblpictures.picture
FROM tblpictures
WHERE (((tblpictures.)='corrosive'))"
What I am I doing wrong.
Thanks
Chris