Get Each Image in Report

meenctg

Learn24bd
Local time
Tomorrow, 00:01
Joined
May 8, 2012
Messages
133
My table structure is
id photoPath name
1 C:\a.jpg A
2 C:\b.jpg B

How to show all image per row at report details section in a report like

ID Image Name
1 Here Image of A A
2 Here Image of B B


Please help me.
 
* Drop an image control on your report
* Set its Control Source to the image path field.
 
* Drop an image control on your report
* Set its Control Source to the image path field.
Thanks for your response.
I have already do this, but it repeat first image only for every record not showing individual image per record.

My All image are jpg,png format
 
Did you actually select the Control Source of the image control from the drop down list?
 
Did you actually select the Control Source of the image control from the drop down list?
No.

My code is below
Code:
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
imgControl.Picture = photoPath.Text
End Sub
 
I want to get all record with images in continuous report.
 
I don't remember if in 2003 the image control has a Control Source property or not, but you're saying you don't see what's in the attached screenshot?

Upload a screenshot of the properties of your image control.
 

Attachments

  • ImageControl.png
    ImageControl.png
    3.2 KB · Views: 174

Users who are viewing this thread

Back
Top Bottom