I'm linking an image into the report by using a field to enter the file name into and then the following to pull the image into the report:
Me!Image14.Picture = "\\IDCNT2\NetVisual$\" & [PhotoRefNo] & ".jpg"
This code is being used on report_open and report_activate. The first image is not shown using only report_open so both have to be used (any ideas here as well?).
The problem is if I scroll through the records by typing in a page number then the images go all astray and are not displayed on the right pages. The report has been set-up to display only one image and the associated records on each page.
Is this making sense at all... thanks...
Me!Image14.Picture = "\\IDCNT2\NetVisual$\" & [PhotoRefNo] & ".jpg"
This code is being used on report_open and report_activate. The first image is not shown using only report_open so both have to be used (any ideas here as well?).
The problem is if I scroll through the records by typing in a page number then the images go all astray and are not displayed on the right pages. The report has been set-up to display only one image and the associated records on each page.
Is this making sense at all... thanks...