L
llpike
Unregistered / Unconfirmed
GUEST, unregistred user!
BtnOpt:=TbitBtn.Create(nil);
with BtnOpt do
begin
Parent:=Form1;
Caption:='Option';
OnClick:=DeployForm; //DeployForm是自定义的全局过程名
end;
OnClick:=DeployForm 该句报错:method point and regular procedure
难道不能直接用过程名定义事件触发的方法?
如果不行,该如何定义?
with BtnOpt do
begin
Parent:=Form1;
Caption:='Option';
OnClick:=DeployForm; //DeployForm是自定义的全局过程名
end;
OnClick:=DeployForm 该句报错:method point and regular procedure
难道不能直接用过程名定义事件触发的方法?
如果不行,该如何定义?