我要打印image1,在FastReport中放了一个picture框,如何才能预览并打印,我用的是fr3
我找到这样一个代码,可是不行啊,fr3中没用memo,view这些参数阿 
procedure TForm1.frReport1BeforePrint(Memo: TStringList; View: TfrView);
begin
  if view.Name='Picture1' then
    TfrPictureView(view).picture.Assign(image1.picture);
end;