• 不使用fastreport自带的条码组件打印快递单(一款很不错的条码组件下载)


    由于没有正确安装fastreport组件,导致没法使用fastreport中的条码组件,如何解决:

    思路:

    1、虽然条码组件不能使用,但有fastreport中picture组件可用。

    2、查找可以生成一维码图片的组件。通过寻找找到了Barcode(下载)

    3、利用picture的filelink属性,在报表中加载第二步产生的条码bmp图片。

    步骤如下:

    一、设计报表

    1、在fastreport设计器中加入picture组件

    2、设置picture的FileLink属性:c:arcode.bmp;

    二、编写代码,利用Barcode组件,产生一维码:

    var
      Barcode1: TAsBarcode;
    begin
      Barcode1 := TAsBarcode.Create(self);
      Barcode1.Top := 0;
      Barcode1.Left := 0;
      Barcode1.Modul := 1;
      Barcode1.Ratio := 2.0;
      Barcode1.Height := 75;
      Barcode1.Text := ‘012345678’;
      Barcode1.ShowText := bcoCode;
      Barcode1.Typ := TBarcodeType(5);
      Barcode1.ShowTextPosition := TShowTextPosition(5);
      Barcode1.Modul := 3;
      try
            Barcode1.Angle := 90;
        except
            Barcode1.Angle := 0.0;
        end;
      Image1.Picture := nil;
      Barcode1.DrawBarcode(Image1.Canvas);
      Image1.Picture.BITMAP.SaveToFile('c:arcode.bmp');//(同FileLink属性一致)
      frxReport1.LoadFromFile('xxx.fr3');
      frxReport1.PrepareReport;

      frxReport1.PrintOptions.ShowDialog := False;
      frxReport1.Print;

  • 相关阅读:
    MySQL2
    MySQL1
    并发编程三
    并发编程二
    并发编程一
    网络基础知识
    反射和单例
    Spring mvc文件上传实现
    SpringMVC系列之SpringMVC快速入门 MVC设计模式介绍+什么是SpringMVC+ SpringMVC的作用及其基本使用+组件解析+注解解析
    java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderL
  • 原文地址:https://www.cnblogs.com/windel/p/7811222.html
Copyright © 2020-2023  润新知