在父类什么地方写?
能给个电话号码,我想联系一下
或者回个电话,你们的电话太难打?
这是审核功能窗体的所有代码?
unit CXBGSHwindow;
interface
uses
Business.System, Business.Model, Business.Forms, Business.Data,
Business.Model.Flow;
type
TCXBGSHwindow = class(FUNCPCBASE.TMainWindow)
FlowBroker1: TFlowBroker;
dsbCxbg: TDataSetBroker;
procedure FlowBroker1AfterFlowOut(Sender: TObject; Command: TFlowOutCommand);
private
{private declarations}
public
{public declarations}
end;
implementation
procedure TCXBGSHwindow.FlowBroker1AfterFlowOut(Sender: TObject; Command: TFlowOutCommand);
begin
Inherited;
JsDialogs.ShowMsg('test','审核');
end;
end. |