Addendum. My mistake. I switched browsers and found that there was an error
message from the BLOB request. It said that the image had to be in GIF/JPG
format. They are. However some may ba blank or null. How do I ignore those
should be the better question to ask.
In the print when expression of the image, set it to be something like this:
iif(query.imagefield IS "", false, true)
so that the image will try to print when it has something but will not print
if it is blank (ie null)
Dean
> Addendum. My mistake. I switched browsers and found that there was an error
> message from the BLOB request. It said that the image had to be in GIF/JPG
> format. They are. However some may ba blank or null. How do I ignore those
> should be the better question to ask.