I have an app where it loads the image to a pic box from a path that is stored in an Access database. The image itself is not stored in the database.
I have searched everywhere for a solution to get the image to load to the report viewer but so far just get the red X.
reportViewer.LocalReport.EnableExternalImages = true ( this is on the report)
=Fields!BeforePhoto.Value=PhotoBefore.Image = Image.FromFile(lblPhotoFileBefore.Text)
=Fields!BeforePhoto.Value=Image.FromFile(lblPhotoFileBefore.Text)
= Fields!BeforePhoto.Value & "File: // lblPhotoFileBefore.ToString"
= Fields!BeforePhoto.Value = "File: // lblPhotoFileBefore.ToString"
The report shows hard coded images only.