Can I somehow name a text box by using an array? For example is there a way to name the text box "textbox(1)" and then when I am programming, refer to the text box by
n = 1
Me.textbox
= 50
and then the value of textbox(1) will be 50? My experience so far is that names of controls are strings and there is no way to do this. Any suggestions? Thanks.
n = 1
Me.textbox
and then the value of textbox(1) will be 50? My experience so far is that names of controls are strings and there is no way to do this. Any suggestions? Thanks.