am_kwzk_ps.pas
上传用户:szruida
上传日期:2007-06-01
资源大小:6518k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit am_kwzk_ps;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  5.   Dialogs, QRCtrls, QuickRpt, ExtCtrls;
  6. type
  7.   Tam_kwzk_p = class(TForm)
  8.     QuickRep1: TQuickRep;
  9.     DetailBand1: TQRBand;
  10.     QRShape1: TQRShape;
  11.     QRShape2: TQRShape;
  12.     QRShape4: TQRShape;
  13.     QRShape5: TQRShape;
  14.     QRLabel3: TQRLabel;
  15.     QRLabel4: TQRLabel;
  16.     QRLabel5: TQRLabel;
  17.     QRLabel6: TQRLabel;
  18.     QRDBText1: TQRDBText;
  19.     QRDBText2: TQRDBText;
  20.     QRDBText5: TQRDBText;
  21.     QRDBText6: TQRDBText;
  22.     QRShape3: TQRShape;
  23.     QRShape7: TQRShape;
  24.     QRShape8: TQRShape;
  25.     QRShape10: TQRShape;
  26.     QRShape11: TQRShape;
  27.     QRLabel7: TQRLabel;
  28.     QRDBText3: TQRDBText;
  29.     QRLabel8: TQRLabel;
  30.     QRDBText4: TQRDBText;
  31.     TitleBand1: TQRBand;
  32.     QRLabel1: TQRLabel;
  33.     QRSysData1: TQRSysData;
  34.     QRLabel2: TQRLabel;
  35.     QRLabel9: TQRLabel;
  36.     procedure FormClose(Sender: TObject; var Action: TCloseAction);
  37.     procedure QuickRep1AfterPrint(Sender: TObject);
  38.   private
  39.     { Private declarations }
  40.   public
  41.     { Public declarations }
  42.   end;
  43. var
  44.   am_kwzk_p: Tam_kwzk_p;
  45. implementation
  46. {$R *.dfm}
  47. procedure Tam_kwzk_p.FormClose(Sender: TObject; var Action: TCloseAction);
  48. begin
  49.  action:=cafree;
  50. end;
  51. procedure Tam_kwzk_p.QuickRep1AfterPrint(Sender: TObject);
  52. begin
  53.  close;
  54. end;
  55. end.