Display Dynamic image in report 6i [message #188665] |
Mon, 21 August 2006 02:56 |
s4sam
Messages: 18 Registered: October 2005 Location: pakistan
|
Junior Member |
|
|
Hi
I have pictures in C:\pictures folder in .jpg format. The names of pictures is exactly same as the employee codes. I want to display the picture of each employee with the data of employee on report 6i. I am in problem for 3 days. Searches even not helped me. Help me plz.
|
|
|
Re: Display Dynamic image in report 6i [message #188689 is a reply to message #188665] |
Mon, 21 August 2006 04:03 |
s4sam
Messages: 18 Registered: October 2005 Location: pakistan
|
Junior Member |
|
|
In query add a column like
select employee_id , 'C:\pictures\' || employee_id || '.jpg' as pic
from employee.
On the property pallete of pic set Read from file property to Yes &
File format to Image.
On layout modal add a field in the frame and set the source to pic.
|
|
|
|