Hi Rod,
Im again!
In my earlier version of vb6, i create controls at runtime using load. And i can identify with thier index. Here in Vb2005 im able to create controls at runtime, but how can i differentiates them. (by name is not suit for me) suggest anything for that works in a loop
my sample code like this
'i create 10 controls of text1 with the index of 0-9 (ofcourse the index is generated automatically)
x=me.tag
say_rev(x)
sub say_rev(x as integer)
text1(x).backcolor=vbblue
text1(x).forecolor=vbwhite
end sub
--------------
can u suggest an alternative in
vb 2005
thanks in advance
ackid32