我已经查看了许多类似标题的帖子,但他们没有帮助。下面编译并安装到组件面板,但是当我尝试将组件添加到面板时,我得到了线程标题中提到的错误消息。有人可以解释一下原因吗?
__fastcall TEditBox::TEditBox(TComponent* Owner) : TGroupBox(Owner)
{
ToolBar=new TToolBar(this);
ToolBar->Parent=this;
TToolButton *Btn=new TToolButton(ToolBar);
Btn->Parent=ToolBar;
}
如果我省略了Btn-> Parent = ToolBar行,那么一切都没问题,所以大概是问题行。