ad_qry_totaldepreciationtype.pas
来自「一个MRPII系统源代码版本」· PAS 代码 · 共 41 行
PAS
41 行
unit Ad_Qry_TotalDepreciationType;
Interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
Base_Qry, Menus, ExtPrintReport, Db, ActnList, AdODB, Grids, DBGridEh,
StdCtrls, ExtCtrls, ComCtrls, ToolWin, jpeg;
Type
TFrm_Ad_Qry_TotalDepreciationType = Class(TFrm_Base_Qry)
private
{ Private declarations }
public
{ Public declarations }
procedure InitForm(AdOConnection:TAdOConnection;ShowExtendColumn:Boolean);Override;
end;
var
Frm_Ad_Qry_TotalDepreciationType: TFrm_Ad_Qry_TotalDepreciationType;
implementation
uses Ad_Qry_TotalDepreciationType_C, Sys_Global;
{$R *.DFM}
{ TFrm_Pm_PcHistory }
procedure TFrm_Ad_Qry_TotalDepreciationType.InitForm(AdOConnection: TAdOConnection;
ShowExtendColumn: Boolean);
begin
inherited;
OrderByFields:='AssetTypeCode';
FreeFields:='SumDepreciation,SDepreciation,';
Frm_Sys_Condition:=TFrm_Ad_Qry_TotalDepreciationType_C.Create(Self);
Act_Filter.Execute;
// GetData;
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?