码迷,mamicode.com
首页 > 其他好文 > 详细

控件的强行转换时发生的错误

时间:2015-07-26 00:27:50      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:

动态生成控件,应该是这么写:

    with TLabel.Create(PanelCheque) do
    begin
        Parent:=PanelCheque;
        Name:=Bank+CurNumber;
        Left:=270;
        Top:=CurTop;
        Height:=24;
        Width:=90;
        Text:=‘‘;
    end;

却一不小心写成了:

    with TLabel(PanelCheque) do
    begin
        Parent:=PanelCheque;
        Name:=numero+CurNumber;
        Left:=450;
        Top:=CurTop;
        Height:=24;
        Width:=160;
        Text:=‘‘;
    end;

结果报错:A control cannot have itself as its parent

有空研究一下,这个报错信息在哪里。另外我就是很感兴趣,在编译器层面是如何做到“强行转换”的?仅仅切换内存的大小?留个爪以后研究。

控件的强行转换时发生的错误

标签:

原文地址:http://www.cnblogs.com/findumars/p/4676868.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!