How can I refer to an object, such as a textbox, when all I've got to refer to is a string containing its name?
exemple: 5 textboxes (txt1... txt5) (no array)
I want to use the textboxes like this:
Sfenx
exemple: 5 textboxes (txt1... txt5) (no array)
I want to use the textboxes like this:
Code:
dim tmp as integer
for i = 1 to 5
tmp = tmp + txti
next
Sfenx