untreceiptpaytype_m.pas

来自「车辆管理系统」· PAS 代码 · 共 52 行

PAS
52
字号
unit untReceiptPayType_M;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, BaseInfo_M, StdCtrls, Mask, wwdbedit, ExtCtrls, DB, DBClient,
  wwdblook;

type
  TfrmReceiptPayType_M = class(TfrmBaseInfo_M)
    wwDBLookupCombo1: TwwDBLookupCombo;
    Label9: TLabel;
    CDSType: TClientDataSet;
    Label6: TLabel;
    wwDBEdit5: TwwDBEdit;
    ADOTable1Label: TLabel;
    CDSTypefid: TAutoIncField;
    CDSTypefcode: TWideStringField;
    CDSTypefname: TWideStringField;
    CDSTypeftype: TWideStringField;
    CDSTypefaccounts: TWideStringField;
    CDSTypefbank: TWideStringField;
    CDSTypefcreadate: TDateTimeField;
    CDSTypefinitamount: TBCDField;
    procedure FormCreate(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  frmReceiptPayType_M: TfrmReceiptPayType_M;

implementation

uses untReceiptPayType, DataProcess;

{$R *.dfm}

procedure TfrmReceiptPayType_M.FormCreate(Sender: TObject);
begin
  inherited;
  GetsqlData(CDSType,'tCash','Fid',' fid>0 ',10);  
  Maintable:='tReceiptPayType';
  MasterField:='fcode';
  ParentForm:=frmReceiptPayType;
end;

end.

⌨️ 快捷键说明

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