猜
猜不透
Unregistered / Unconfirmed
GUEST, unregistred user!
[^]如何将字符串转换为控件属性?
例如:
i:string;
k:string;
label1.caption:='123';
i:='label1.caption';
这加入何语句可将k的值等于label1.caption的值123.
k:=i;//此句不能改。
即要使k:=label1.caption;
而非k:='label1.caption';
例如:
i:string;
k:string;
label1.caption:='123';
i:='label1.caption';
这加入何语句可将k的值等于label1.caption的值123.
k:=i;//此句不能改。
即要使k:=label1.caption;
而非k:='label1.caption';