A
Andy
I am trying to store a value in a form text box eg.
Text30 = 24
No problem but I want to build the name of the Text box
dynamically - something like :-
Dim aa as Integer
Dim ss as String
aa = 30
ss = "Text" & aa
eval(ss) = 24
That does not work but you can see what I am trying to do.
Can you help?
Text30 = 24
No problem but I want to build the name of the Text box
dynamically - something like :-
Dim aa as Integer
Dim ss as String
aa = 30
ss = "Text" & aa
eval(ss) = 24
That does not work but you can see what I am trying to do.
Can you help?