📄 jhyrwreport.pas
字号:
unit jhyrwReport;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
QuickRpt, Qrctrls, ExtCtrls;
type
TjhyrwreportForm = class(TForm)
QuickRep: TQuickRep;
QRBand2: TQRBand;
QRBand3: TQRBand;
QRBand4: TQRBand;
QRBand5: TQRBand;
PageHeaderBand1: TQRBand;
jhyQR: TQRLabel;
QRLabel1: TQRLabel;
QRLabel2: TQRLabel;
startQR: TQRLabel;
endQR: TQRLabel;
QRLabel3: TQRLabel;
QRLabel4: TQRLabel;
QRLabel5: TQRLabel;
QRLabel6: TQRLabel;
QRLabel7: TQRLabel;
QRLabel8: TQRLabel;
QRLabel9: TQRLabel;
QRLabel10: TQRLabel;
QRLabel11: TQRLabel;
QRLabel12: TQRLabel;
QRLabel13: TQRLabel;
QRLabel14: TQRLabel;
QRLabel15: TQRLabel;
QRLabel16: TQRLabel;
QRLabel17: TQRLabel;
sqbidQR: TQRDBText;
cpmcQR: TQRDBText;
xhggQR: TQRDBText;
jldwQR: TQRDBText;
sbslQR: TQRDBText;
sbsjQR: TQRDBText;
kcslQR: TQRDBText;
xcgslQR: TQRDBText;
ycdhsjQR: TQRDBText;
xqdwQR: TQRDBText;
cgslhsQR: TQRDBText;
bzQR: TQRDBText;
QRSysData1: TQRSysData;
QRLabel18: TQRLabel;
QRLabel19: TQRLabel;
QRSysData2: TQRSysData;
QRShape3: TQRShape;
QRShape4: TQRShape;
QRShape5: TQRShape;
QRShape6: TQRShape;
QRShape7: TQRShape;
QRShape8: TQRShape;
QRShape9: TQRShape;
QRShape10: TQRShape;
QRShape11: TQRShape;
QRShape12: TQRShape;
QRShape13: TQRShape;
QRShape14: TQRShape;
QRShape15: TQRShape;
QRLabel20: TQRLabel;
RecordCountQR: TQRLabel;
QRShape16: TQRShape;
QRShape17: TQRShape;
QRShape18: TQRShape;
QRShape19: TQRShape;
QRShape20: TQRShape;
QRShape21: TQRShape;
QRShape22: TQRShape;
QRShape23: TQRShape;
QRShape24: TQRShape;
QRShape25: TQRShape;
QRShape26: TQRShape;
QRShape27: TQRShape;
QRShape28: TQRShape;
QRLabel21: TQRLabel;
QRLabel22: TQRLabel;
QRLabel23: TQRLabel;
QRLabel24: TQRLabel;
QRLabel25: TQRLabel;
procedure cgslhsQRPrint(sender: TObject; var Value: String);
procedure xcgslQRPrint(sender: TObject; var Value: String);
procedure kcslQRPrint(sender: TObject; var Value: String);
procedure sbslQRPrint(sender: TObject; var Value: String);
private
{ Private declarations }
public
{ Public declarations }
end;
var
jhyrwreportForm: TjhyrwreportForm;
implementation
uses Datamodule;
{$R *.DFM}
procedure TjhyrwreportForm.cgslhsQRPrint(sender: TObject;
var Value: String);
begin
value:=Format('%.2f',[strtofloat(value)]);
end;
procedure TjhyrwreportForm.xcgslQRPrint(sender: TObject;
var Value: String);
begin
value:=Format('%.2f',[strtofloat(value)]);
end;
procedure TjhyrwreportForm.kcslQRPrint(sender: TObject; var Value: String);
begin
value:=Format('%.2f',[strtofloat(value)]);
end;
procedure TjhyrwreportForm.sbslQRPrint(sender: TObject; var Value: String);
begin
value:=Format('%.2f',[strtofloat(value)]);
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -