有一组Label控件,怎样根据某个整形变量i的大小来改变对应第i个Label控件的Caption啊
比如现在i=1,则可以改变Label1 的Caption;如果i变成2,就可以改变Label2的Caption,这个功能怎么实现啊,请大侠们帮帮忙啊!!!!!!!!!
笨人用笨方法…………
dim xxxx(你要改变的源变量) as string
select case i
case 1
label1.caption = xxxx
case 2
label2.caption = xxxx
……………………
case else:
end select
或者:
建立控件数组
label(i).caption=xxxx
[此贴子已经被作者于2006-8-22 10:34:28编辑过]