1974maiden
MIS
I have the following code ...
SUB DETAIL_FORMAT
if isnull(me![txtImagePath]) then
me![iImage].picture = ""
else
me![iImage].picture = me![txtImagePath]
END SUB
this works fine (image is displayed) where the fieldname iImage has a path pointing to an image but when the field is empty or no path it still shows the previous image.
Any ideas out there ?
SUB DETAIL_FORMAT
if isnull(me![txtImagePath]) then
me![iImage].picture = ""
else
me![iImage].picture = me![txtImagePath]
END SUB
this works fine (image is displayed) where the fieldname iImage has a path pointing to an image but when the field is empty or no path it still shows the previous image.
Any ideas out there ?