K
Kathy G
I am a novice at coding and would appreciate some help. I have 2 forms. One
form the user enters start and end times for a student who is testing and a
2nd form that is a pop up for display of information only. It displays which
testers are currently testing and how much time they have left in their
testing session based on the information entered in the 1st form. My 2nd
form needs to requery every few seconds to show time remaining in each
testers session as well as new testers as they arrive and delete testers who
have finished. I have set the forms Onload property to Timer(), the
TimerInterval Property to 10000 and the OnTimer Property to the following
Event Procedure
Private Sub Form_Timer()
'Requery the form
Forms!TestInProgressForm.Requery
End Sub
This works fine to continually calculate the the students time remaining in
the testing session but does not add new testers or remove finished testers
unless I close and reopen the form. Please help.
form the user enters start and end times for a student who is testing and a
2nd form that is a pop up for display of information only. It displays which
testers are currently testing and how much time they have left in their
testing session based on the information entered in the 1st form. My 2nd
form needs to requery every few seconds to show time remaining in each
testers session as well as new testers as they arrive and delete testers who
have finished. I have set the forms Onload property to Timer(), the
TimerInterval Property to 10000 and the OnTimer Property to the following
Event Procedure
Private Sub Form_Timer()
'Requery the form
Forms!TestInProgressForm.Requery
End Sub
This works fine to continually calculate the the students time remaining in
the testing session but does not add new testers or remove finished testers
unless I close and reopen the form. Please help.