[RESOLVED] Text Box Question
Hi Everyone
take a look at this
VB Code:
For z = 1 To UBound(strblock)
'some other code
name1_ = Val(name1)
[B]Text(name1_).Text = ("IVR " & name1 )[/B]
'some other code
next z
i have several text boxes which i have named as "text11" , "text12" , "text22" .. and so on
and this variable "name_" gets this value at run in loop "11","12","21" ...
but above given line (the one i have set as bold) . doesnt work .. it prompts like " sub or function not defined " :eek2:
along with this .. i havent declared those text boxes as control arrays .. no index set ... do i need to , how can i make thsi expression work
Regards
Re: [RESOLVED] Text Box Question