D
dingsword
Unregistered / Unconfirmed
GUEST, unregistred user!
我现在有三个按钮(bt1,bt2,bt3),我想写个函数使得三个标签(Label) 中相应 caption值为 所点击按钮 的 名字
如:我点击了bt1,则label的caption值为bt1
我是这么想的
bt1 的click 为 SetCaption(1);
bt2 的click 为 SetCaption(2);
bt3 的click 为 SetCaption(3);
procedure SetCaption(id:String)
begin
label[id].captin := 'bt' +id
//这个函数并不对
end
举上面的例子,并不是单纯的想解决这个问题。
我做flash程序时,flash里有个eval函数可以返回相应对象,变量,但delphi里没有找到,不值谁知道?
如:我点击了bt1,则label的caption值为bt1
我是这么想的
bt1 的click 为 SetCaption(1);
bt2 的click 为 SetCaption(2);
bt3 的click 为 SetCaption(3);
procedure SetCaption(id:String)
begin
label[id].captin := 'bt' +id
//这个函数并不对
end
举上面的例子,并不是单纯的想解决这个问题。
我做flash程序时,flash里有个eval函数可以返回相应对象,变量,但delphi里没有找到,不值谁知道?