如何才能限制不让动态窗体重复创建?(10分)

  • 主题发起人 主题发起人 77578790
  • 开始时间 开始时间
7

77578790

Unregistered / Unconfirmed
GUEST, unregistred user!
如果点击一个button后动态产生一个窗体Form2,那么怎么防止多次点击button后重复创建窗体Form2?
procedure TFORM1.buttonclick(tobject;sender);
begin
application.createform(TForm2,Form2)
end;
 
if not assigned(form2) then
form2:=Tform2.create(application)
form2.show;
 
To:77578790
if not assigned(formfile) then
begin
formfile := Tformfile.Create(self);
FormFile.Show; // 显示窗体
end;

给分哦!
 
后退
顶部