I wonder
If i have 12 unbound text box
and i want to take the value of those text box.
those text box are named (article1, article2, article3,...,ar ticle12)
So i write this:
Is it possible do this in a for loop or something like that?
I tried this one but it wont work !
Thanks for advance
If i have 12 unbound text box
and i want to take the value of those text box.
those text box are named (article1, article2, article3,...,ar ticle12)
So i write this:
Code:
Article1=me.article1.value Article2=me.article2.value .......... Aticle12=me.article12.value
Code:
for i=1 to i=12 Article1 = article& i &.value next i
Thanks for advance
Comment