I saw a demo where pictures are coming from memo fields.
Is it possible to insert pictures with links.
Thanks in advance
Otto
I saw a demo where pictures are coming from memo fields.
Is it possible to insert pictures with links.
Thanks in advance
Otto
picture.filelink:=imagenpicture.filelink:=path+imagen
img:="c:\Fotos\image.jpg"
FrPrn:=FrReportManager():New("FRSysth.dll")
...
FrPrn:AddVariable("MisVariables","Imagen","'"+img+"'")
...procedure ReportHOnStartReport(Sender: TfrxComponent);
begin
 Picture1.FileLink:=<Imagen>;   //path of img and name file img
end;alias->field_1 :="c:\Fotos\image.jpg"
FrPrn:=FrReportManager():New("FRSysth.dll")
...
FrPrn:SetWorkArea("Alias" , nArea)
...procedure ReportHOnStartReport(Sender: TfrxComponent);
begin
 Picture1.FileLink:=<ALIAS."field_1">;
end;var
 img: string;
procedure ReportHOnStartReport(Sender: TfrxComponent);
begin
 img:='c:\imagen.jpg';
 Picture1.FileLink:=<img>;
end;Hello Ernesto,
thank you very much. I think example 2 is what I need.
I will test the examples and report back.
Starting with a new tool is not that easy but FR seems to be a very mighty tool and the results are great.
Best regards,
Otto