I have this code:
def EnterQuiz(self):
import quiz_notes quiz_notes.create(self).Show(True) self.OnStuEntry()
Basically, I open up another window, enter some data that gets put
in a database, then that window destroy’s itself and it’s back to
the main window. I’m trying to have OnStuEntry() run after
quiz_notes.create(self).Show(True) is finished, but it’s not
happening. Is there a way to wait for the window to close. It
seems like it should, which tells me I don’t know what’s going on.
I’m not having errors, it’s just that I have to rechoose the student
and then everything gets updated.