Hi Everyone
take a look at this

VB Code:
  1. For z = 1 To UBound(strblock)
  2. 'some other code
  3. name1_ = Val(name1)
  4. [B]Text(name1_).Text = ("IVR " & name1 )[/B]
  5. 'some other code
  6. 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 "
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