M
mksnoopy
Unregistered / Unconfirmed
GUEST, unregistred user!
如何在工程文件中,如何终止程序的运行.即首先创建了欢迎界面的窗体,然后在创建某个
窗体时,在该formcreate事件中出现了applcation.terminate,从而不进行后续的窗体创建,
直接终止程序并且要关闭释放欢迎界面的form.请教高手!!!
{$R *.res}
begin
frmlogo:=tfrmlogo.create(application); //欢迎界面
frmlogo.Show;
frmlogo.Update;
Application.Initialize;
Application.CreateForm(Tfrmmain, frmmain);---->在frmmain中的create事件中
//有applcation.terminate
Application.CreateForm(Tdm, dm); //如何不执行以下两句的窗体创建
Application.CreateForm(Tfrminfo, frminfo);
frmlogo.Close; //但是这个释放语句还是要执行的
frmlogo.Free; //释放欢迎界面
application.Run;
end.
窗体时,在该formcreate事件中出现了applcation.terminate,从而不进行后续的窗体创建,
直接终止程序并且要关闭释放欢迎界面的form.请教高手!!!
{$R *.res}
begin
frmlogo:=tfrmlogo.create(application); //欢迎界面
frmlogo.Show;
frmlogo.Update;
Application.Initialize;
Application.CreateForm(Tfrmmain, frmmain);---->在frmmain中的create事件中
//有applcation.terminate
Application.CreateForm(Tdm, dm); //如何不执行以下两句的窗体创建
Application.CreateForm(Tfrminfo, frminfo);
frmlogo.Close; //但是这个释放语句还是要执行的
frmlogo.Free; //释放欢迎界面
application.Run;
end.