TfrxPictureView & TImageList
Get the indenting & the "progress bar" bit working - Thanks.
procedure Gradient1OnBeforePrint(Sender: TfrxComponent);
begin
Gradient1.Width := Gradient1.Width * (<RI1."_Percent"> / 100);
end;
procedure Memo2OnBeforePrint(Sender: TfrxComponent);
begin
Memo2.Left := Memo2.Left +(<RI1."_Indent"> * Picture0.Width);
end;
Next is to get the glyph displaying. Is there a way to load the glyph into the TfrxPictureView from a TImageList in an OnBeforePrint event? If not is tehre a way to load it in before displaying the report? I don't want to have to write the glyphs out to file if I can avoid it. I'm quite happy to have 5 TfrxPictureView in the report and toggle visibility on/off as needed.
TIA
procedure Gradient1OnBeforePrint(Sender: TfrxComponent);
begin
Gradient1.Width := Gradient1.Width * (<RI1."_Percent"> / 100);
end;
procedure Memo2OnBeforePrint(Sender: TfrxComponent);
begin
Memo2.Left := Memo2.Left +(<RI1."_Indent"> * Picture0.Width);
end;
Next is to get the glyph displaying. Is there a way to load the glyph into the TfrxPictureView from a TImageList in an OnBeforePrint event? If not is tehre a way to load it in before displaying the report? I don't want to have to write the glyphs out to file if I can avoid it. I'm quite happy to have 5 TfrxPictureView in the report and toggle visibility on/off as needed.
TIA