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

📄 untreceiptpaytype_m.pas

📁 用delphi编写的数据库管理软件
💻 PAS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -