How to load an image
Hello:
I have four TImage components on a form. The user can select which images to load on each component.
Eventually, when all the images are loaded I want to print them on a report with other data.
How can I pass the TImages picture to frxReport?
thank you
I have four TImage components on a form. The user can select which images to load on each component.
Eventually, when all the images are loaded I want to print them on a report with other data.
How can I pass the TImages picture to frxReport?
thank you
Comments
Var frImage1: TfrxPictureView;
begin
frImage1 := frxReport1.FindObject('Picture1') as TfrxPictureView;
frImage1.Picture := MyImage.Picture;
2 hours wasted looking for the solution in the programers and users guide. Only 5 minutes after writting a new post asking for help I find the answer.
Well, nobody can say asking for help is not usefull...
Anyway, I hope the answer could help somebody else.
Bye.