i need to include images from a database in the data report ...can any body tell me how to do it..i have done that in crystal reports but due to some reason i cannot use it
thanx
Printable View
i need to include images from a database in the data report ...can any body tell me how to do it..i have done that in crystal reports but due to some reason i cannot use it
thanx
According to MSDN, the rptImage control cannot be bound to a data field. You can load the image in code using something like
VB Code:
Set DataReport1.Sections("Section1").Controls(1).Picture = LoadPicture("c:\windows\FeatherTexture.bmp") DataReport1.Refresh
I don't think you can show an image per record.
Moved to Reporting section.