memo1只是个路径, Picture1 要把MEMO1的路径图片显示出来。
也就是Picture1 要动态显示图片。

解决方案 »

  1.   

    先提取出路径下的图片列表,然后让Picture1一个一个的加载
      

  2.   

    先提取出路径下的图片列表,然后让Picture1一个一个的加载
      

  3.   


    procedure TForm1.frxReport1BeforePrint(Sender: TfrxReportComponent);
    var
      picpath:string;
    begin
      picpath:=......;
      if (sender is TFrxPictureView) and (sender.Name='Picture1')  then
        with (sender as TFrxPictureView) do
          if FileExists(picpath) then
            Picture.LoadFromFile(picpath);end;