Don't think that the best title...

Does anyone know how to resolve object names on the fly

e.g. I have 6 controls called

mybox1
mybox2
mybox3
...


when the form is submitted I want to look though them creating a list

VB Code:
  1. Dim mystring as string
  2.  
  3. for i = 1 to 6
  4.   mystring += mybox+i.tostring.trim + ","
  5. next
  6.  
  7. 'Save myString to DB