Printing a barcode into CrossView

edited 10:15AM in FastReport 4.0
How to print barcode to each row in CrossView. Thanks

Comments

  • edited 10:15AM
    cadsky wrote: »
    How to print barcode to each row in CrossView. Thanks

    procedure CellMemo0OnBeforePrint(Sender: TfrxComponent);
    var
    BarCode: TfrxBarCodeView;
    Picture: TfrxPictureView;
    begin

    BarCode := TfrxBarCodeView.Create(Sender.parent);
    BarCode.SetBounds(Memo.Left, Memo.Top, 50, 10);

    or

    Picture := TfrxPictureView.Create(Sender.parent);
    Picture.SetBounds(Memo.Left, Memo.Top, 10, 10);
    Picture.Picture.LoadFromFile('e:\Images\dsoft\loga\16.bmp');

    end;

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.