⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 applyeditrptfrm.pas

📁 结合读卡器使用。程序中有按迟到时间长短自动开罚单功能
💻 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 + -