控件Free的问题(在线等候)(100分)

  • 主题发起人 主题发起人 独孤剑
  • 开始时间 开始时间
PostMessage(Panel1.Handle, WM_CLOSE, 0, 0);
 
用PostMessage
 
改变SpeedButton的Parent
 
改变Parent不行啊~~~~~~~~~~~~~~~

Focus没转移。。
 
D6果真无此问题
 
代码:
这样好了。。。。。呵呵

procedure TForm1.SpeedButton1Click(Sender: TObject);
begin
  //  SpeedButton1.Parent := Form1;
  //  SpeedButton1.
    //SpeedButton1.Free;
  if SpeedButton1.Parent <> Panel1 then
    Panel1.Free
  else
    SpeedButton1.Parent := Form1;
end;
 
看来只有fshell的方法能保证不出错,我试过上面大侠的所有方法,都能作到最好
你还是使用fshell的方法吧,只要不出错,什么都行啊
 
多人接受答案了。
 
fshell的方法真是太好了。
 
后退
顶部