G
Guest
I'm trying to have it go through a series of textboxes and fill them. The
problem I'm having is that I don't know how to get it to move to the next
box. I tried:
n=1
while n < 6
Title = "Text" & n
Me!Title.SetFocus
Me!Title.Text = "blah blah blah"
n=n+1
Title = ""
wend
but it doesn't recognize that Title is the same as Text1, Text2, etc. Am I
looking at it wrong or is it impossible?
problem I'm having is that I don't know how to get it to move to the next
box. I tried:
n=1
while n < 6
Title = "Text" & n
Me!Title.SetFocus
Me!Title.Text = "blah blah blah"
n=n+1
Title = ""
wend
but it doesn't recognize that Title is the same as Text1, Text2, etc. Am I
looking at it wrong or is it impossible?