Code:
dim Str1(0 to 5) as string
for i = 1 to 10
str1(i)= Me.controls("textbox" & i). text
next
Code:
dim Str1(0 to 5) as string
for i = 1 to 10
Me.controls("textbox" & i). text = str1(i)
next
I would also like to use : .Hide() and .Show() in the same way
(Using VB 2008 express)
Comment