首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ Builder >

印象中有个函数可以将字符串转换成变量名,哪位高手知道

2012-03-11 
印象中有个函数可以将字符串转换成变量名,谁知道?String bbbfor (int i0 i10 i++){bbb Button +

印象中有个函数可以将字符串转换成变量名,谁知道?
String bbb;

for (int i=0; i<10; i++)
{
  bbb = "Button" + IntToStr(i);

  TButton *ccc = (TButton *)xxxxx(aaa);

  ccc->Caption = "成功";
}

请问哪个xxxxx函数的名字叫什么来着?

[解决办法]
你可能是想用FindComponent吧

[解决办法]
String bbb;

for (int i=0; i<10; i++)
{
bbb = "Button" + IntToStr(i);

TButton *ccc = (TButton*)FindComponent(bbb);

ccc->Caption = "成功";
}

[解决办法]
FindComponent 完全符合楼主提供的代码需求
[解决办法]
FindComponent 就是啦!
[解决办法]
FindComponent 就是啦!
[解决办法]

热点排行