L
Laurel
This is related to another post about problems making a control visible.
But if it's the same problem, then my theory about the other one is wrong.
So I'm posting separately.
In the following code, I don't see anything in txtUpdate until the whole
loop is finished (executes 13 times), and the value is the name in the last
record. How can I make the 13 different names display as the procedure is
executed?
Do Until rstClassList.EOF
txtUpdate = rstClassList!First_Name & " " & rstClassList!Last_Name
Call subUpdateStudentLevels(rstClassList!Student_ID)
rstClassList.MoveNext
Loop
But if it's the same problem, then my theory about the other one is wrong.
So I'm posting separately.
In the following code, I don't see anything in txtUpdate until the whole
loop is finished (executes 13 times), and the value is the name in the last
record. How can I make the 13 different names display as the procedure is
executed?
Do Until rstClassList.EOF
txtUpdate = rstClassList!First_Name & " " & rstClassList!Last_Name
Call subUpdateStudentLevels(rstClassList!Student_ID)
rstClassList.MoveNext
Loop