dfm_rpxszs.pas

来自「仓库管理系统 仓库管理系统」· PAS 代码 · 共 55 行

PAS
55
字号
unit dfm_rpxszs;

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  Qrctrls, TeEngine, Series, Db, DBTables, TeeProcs, Chart, DBChart, QrTee,
  QuickRpt, ExtCtrls, StdCtrls;

type
  Tdfmrpxszs = class(TForm)
    qrpxszs: TQuickRep;
    QRBand1: TQRBand;
    QRBand2: TQRBand;
    QRDBChart1: TQRDBChart;
    QRChart1: TQRChart;
    DataSource1: TDataSource;
    Query1: TQuery;
    Series1: TLineSeries;
    QRLabel1: TQRLabel;
    QRLabel2: TQRLabel;
    Label1: TLabel;
    QRBand3: TQRBand;
    QRLabel3: TQRLabel;
    QRLabel4: TQRLabel;
    procedure QRLabel2Print(sender: TObject; var Value: String);
    procedure FormShow(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  dfmrpxszs: Tdfmrpxszs;

implementation

uses dfm_xszsfx, chHeadUnit;

{$R *.DFM}

procedure Tdfmrpxszs.QRLabel2Print(sender: TObject; var Value: String);
begin
  value:= dfmrxfx.label5.Caption;
end;

procedure Tdfmrpxszs.FormShow(Sender: TObject);
begin
  query1.Active :=false;
  query1.Active :=true;
end;

end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?