S
skyhero
Unregistered / Unconfirmed
GUEST, unregistred user!
比如说自定义一个事件,
showmessage;
begin
showmessage('this is a test');
end;
后在每个from 的oncreate都能继承调用该事件:
如:
form1oncreate( sender:tobject);
begin
showmessage('this is a test form1.oncreate');//这边不能增加任何代码所能工作只能放在showmessage;
end;
打开FORM1
显示结果:
this is a test form1.oncreate
thsi is a test
如果要显示为这样的结果,showmessage要如何写,让各个窗口的oncreate能够继承,并且我不希望改变任何的form 代码.
showmessage;
begin
showmessage('this is a test');
end;
后在每个from 的oncreate都能继承调用该事件:
如:
form1oncreate( sender:tobject);
begin
showmessage('this is a test form1.oncreate');//这边不能增加任何代码所能工作只能放在showmessage;
end;
打开FORM1
显示结果:
this is a test form1.oncreate
thsi is a test
如果要显示为这样的结果,showmessage要如何写,让各个窗口的oncreate能够继承,并且我不希望改变任何的form 代码.