H
Harlan
In VB, you can create a control array, which makes looping through a counter
loop easy, thus making it easy to display the values of different variables
in text boxes.
example:
I have 30 text boxes, txt101(0) thru txt101(29)
and 30 variables Resistance(0) thru Resistance(29).
In VB I would use something like the following to load the values of the
variables into the text boxes
For I = 0 to 29
txt101(I).value = Resistance(I)
Next I
What is an easy approach to do the same in Access97
Thanks
Harlan
loop easy, thus making it easy to display the values of different variables
in text boxes.
example:
I have 30 text boxes, txt101(0) thru txt101(29)
and 30 variables Resistance(0) thru Resistance(29).
In VB I would use something like the following to load the values of the
variables into the text boxes
For I = 0 to 29
txt101(I).value = Resistance(I)
Next I
What is an easy approach to do the same in Access97
Thanks
Harlan