Printing a picture in the TfrxCrossView

edited August 2016 in FastReport 4.0
I would like print a picture in each row CrossView using OnBeforePrintCell event.

This code not working.
procedure BeforePrintCell(Memo: TfrxCustomMemoView;
    RowIndex, ColumnIndex, CellIndex: Integer;
    const RowValues, ColumnValues, Value: Variant);
begin
  if frxPictureView = nil then
    frxPictureView := TfrxPictureView.Create(Memo.Owner);
  frxPictureView.Parent := Memo.Page;
  frxPictureView.Picture.LoadFromFile('C:\rabit.bmp');
  frxPictureView.Top := Memo.Top;
  frxPictureView.Left := Memo.Left;
  frxPictureView.Height := Memo.Height;
  frxPictureView.Width := Memo.Width;

or using Memo.Draw(?)

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.