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:
Dim mystring as string for i = 1 to 6 mystring += mybox+i.tostring.trim + "," next 'Save myString to DB




Reply With Quote