📄 applyeditrptfrm.pas
字号:
unit ApplyEditRptfrm;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, QRCtrls, QuickRpt, ExtCtrls;
type
TApplyEditRptForm = class(TForm)
QuickRep1: TQuickRep;
DetailBand1: TQRBand;
QRLabel1: TQRLabel;
QRShape10: TQRShape;
QRShape11: TQRShape;
QRShape1: TQRShape;
QRShape16: TQRShape;
QRShape2: TQRShape;
QRShape3: TQRShape;
QRShape4: TQRShape;
QRShape5: TQRShape;
QRShape6: TQRShape;
QRLabel2: TQRLabel;
QRLabel3: TQRLabel;
QRLabel4: TQRLabel;
QRLabel5: TQRLabel;
QRLabel6: TQRLabel;
QRDBText1: TQRDBText;
QRDBText2: TQRDBText;
QRDBText3: TQRDBText;
QRDBText4: TQRDBText;
QRDBText5: TQRDBText;
QRLabel7: TQRLabel;
QRShape7: TQRShape;
QRLabel8: TQRLabel;
QRDBRichText1: TQRDBRichText;
QRDBText6: TQRDBText;
private
procedure ShowField;
{ Private declarations }
public
{ Public declarations }
end;
var
ApplyEditRptForm: TApplyEditRptForm;
function ShowApplyEditRpt:boolean;
implementation
uses DataModule1;
{$R *.dfm}
function ShowApplyEditRpt:boolean;
begin
ApplyEditRptForm:=TApplyEditRptForm.Create(Application);
try
ApplyEditRptForm.ShowField;
ApplyEDITRptForm.QuickRep1.Preview;
finally
ApplyEditRptForm.Free;
end;
end;
{ TApplyEditRptForm }
procedure TApplyEditRptForm.ShowField;
begin
QRLabel1.Caption :='制作要求申请表';
QRDBText4.DataField :='A_ScreenMoney';
QRDBText5.DataField :='A_EditMoney';
QRDBRichText1.DataField :='A_Request';
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -