Refering to a Text Box using a string

Local time
Today, 12:44
Joined
Oct 20, 1999
Messages
12
Hi,
Does anyone know if it possible to refer to text boxes using a string ?
I have a form with txt boxes named "txtOrder1","txtOrder2" etc. and want to load them with a string such as "txtOrder"+"1", "txtOrder"+"2" from user input ?
 
One way:

Me("txtOrder" & x)

where x is a variable containing the number.
 

Users who are viewing this thread

Back
Top Bottom