FormShow 为什么执行两次

以前就发现过这个问题,但一直没有在意。昨天一个窗体FORMSHOW执行了两次,对数据有影响,于是搜索了一下这个问题的答案。

Since your other thread finally gave your situation, it was very easy to find the problem:
AForm.Position := poMainFormCenter;

This calls Perform(CM_RECREATEWND, 0, 0); which will execute an immediate recreate of the form.

这种情况多发生在MDI的窗体中。

解决的办法:
如果你不能干掉AForm.Position语句,那么可以设置一个变量来记录执行次数。

var iFirstExecute:boolean;
formCreate{
iFirstExecute:=true;
}

formShow{
if not iFirstExecute then exit;
// code of do sth.
iFirstExecute:=false;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值