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

📄 ap_qry_invinbillline.pas

📁 一个MRPII系统源代码版本
💻 PAS
字号:
unit Ap_Qry_InvInBillline;

Interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  Base_Qry, Menus, ExtPrintReport, Db, ActnList, AdODB, Grids, DBGridEh,
  StdCtrls, ExtCtrls, ComCtrls, ToolWin;

Type
  TFrm_Ap_Qry_InvInBillline = Class(TFrm_Base_Qry)
    Label5: TLabel;
    Lbl_Wh: TLabel;
    Label7: TLabel;
    Lbl_No: TLabel;
    Label9: TLabel;
    Lbl_Amount: TLabel;
    procedure FormCreate(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  procedure InitForm(AdOConnection:TAdOConnection;ShowExtendColumn:Boolean);Override;
  end;

var
  Frm_Ap_Qry_InvInBillline: TFrm_Ap_Qry_InvInBillline;

implementation

{$R *.DFM}

{ TFrm_Ap_Qry_InvInBillline }

procedure TFrm_Ap_Qry_InvInBillline.InitForm(AdOConnection: TAdOConnection;
  ShowExtendColumn: Boolean);
begin
  inherited;
end;

procedure TFrm_Ap_Qry_InvInBillline.FormCreate(Sender: TObject);
begin
  inherited;
  PriceFields:='InvBillnotaxPriceC,InvBillnotaxAmountC,';
end;

end.

⌨️ 快捷键说明

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