I have been using the for loop statement to create a loop and I would like to display the values generated by the loop statement in a text box.
port=0
do {
port=port+1
change.text=port
} while (port<9999);
"Change" is a dynamic text box. All I keep getting is the end result, which is 9999. It is blank for a while, then immediately jumps to 9999 Any and all suggestions will be greatly appreciated.
port=0
do {
port=port+1
change.text=port
} while (port<9999);
"Change" is a dynamic text box. All I keep getting is the end result, which is 9999. It is blank for a while, then immediately jumps to 9999 Any and all suggestions will be greatly appreciated.