I have a bunch of text boxes on a report called
id_1, id_2, id_3, etc...
is it possible to use a for loop to access these text boxes
i'm doing it the long way right now and i think thats probably the way i'll have to do it. i'm just curious.
ex. of long ay.
if (num == 1)
id_1 = ...
if (num == 2)
id_2 = ...
is this possible?
ex. for (i = 1; i < num_id; i++)
'access the relevant box here.
thanks for any help
id_1, id_2, id_3, etc...
is it possible to use a for loop to access these text boxes
i'm doing it the long way right now and i think thats probably the way i'll have to do it. i'm just curious.
ex. of long ay.
if (num == 1)
id_1 = ...
if (num == 2)
id_2 = ...
is this possible?
ex. for (i = 1; i < num_id; i++)
'access the relevant box here.
thanks for any help