Please help!

edited 2:23PM in FastReport 3.0
I want to add picture to my report.
I write:
void __fastcall TformPrintAut::frxPrintAutBeforePrint(
TfrxReportComponent *Sender)
{
if(Sender->Name == "Picture1")
{
TJPEGImage *jpg = new TJPEGImage;
jpg->LoadFromStream(s1);
TfrxPictureView(Sender).Picture = Image1->Picture;
delete s;
delete jpg;
}
}

but no pics showed to report ... what I do wrong???

Comments

  • edited 2:23PM
    opss ...
    where TfrxPictureView(Sender).Picture = Image1->Picture; is
    TfrxPictureView(Sender).Picture->Assign(jpg);

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.