How to assign value to a textbox.
I have created a 'for' loop with index j. Now I want to track the value of j when this loop is running. For this purpose I have created a textbox. The value of textbox will be the value of j. my code is like that :
for j = 1 to 6
textbox2.value = j
...............
............
next j
However I am not getting what i wanted. This textbox only showing the last value of j, not intermediate values of j. Can anyone tell me where I am making mistake?
Thanks in advance
|