cancel
Showing results for 
Search instead for 
Did you mean: 

Insert a bitmap image into a Crystal Report Dynamically?

Former Member
0 Kudos

Can anyone please assist in the procedure to insert a bitmap into a report dynamically. I want to insert a picture of the employee to print along with their detailed information. How can I do this?

Can anyone assist?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Zack

As I undersatand you want to insert bitmap image dynamically.

You can insert bitmap image dynamically with the help of OLE object in Crystal Report.Mentioned below are the steps to insert OLE object

1)Click on Insert Menu

2)Click on OLE object.

3)3)If you have existing image the click on "Create from file."

4)Place the image in the section.

5)Right click the OLE image ->FormateGraphic->Picture Tab.

6)In Graphic Location pane(X-2) specify the path.

Hope it helps.

Regards

Asha.

Answers (3)

Answers (3)

Former Member
0 Kudos

Thank you, this worked...you guys are awesome.

Former Member
0 Kudos

Hi Jason, thanks for your response.

I apologize but I am new to creating dynamic formulas. You're correct in that the photos are stored in a folder on a network path outside the main database. I am not clear as to how I can link the report with the pictures in this folder and have it display the corresponding photo for each employee in the report?

If it is not too much to ask, can you give me more details on the procedure in getting this to work?

Thanks,

Zack

Former Member
0 Kudos

Zack,

I'm assuming that the images are not being stored in the database itself, but rather in a separate file folder on your network.

You need to create a dynamic link formula. Something like this:


"\\172.16.138.250\HumanResources\EmployeePhotos\" & {EmpTable.EmployeeName} & ".bmp"

Hope this helps,

Jason