G
Guest
I am writing a presentation for our local soccer club to teach the laws of soccer to parents. I have a "quiz" master page that is the starting point for the users to select one of 17 quizzes. I am able to track the score the users get during the quiz, and I want to display it on the page when they return to the master page. My macro works fine, but I cannot figure out how to have it automatically update the text box when the user simply returns to the screen.
I don't want to have to require them to click on a button to see the score. The macro is as follows
Sub QuizResults(
If TotQuestions = 0 The
ActiveWindow.Presentation.Slides(81).Shapes("Results").TextFrame.TextRange.Text = "(Quiz not started yet)
Els
ActiveWindow.Presentation.Slides(81).Shapes("Results").TextFrame.TextRange.Text = "(Your total is: " & TotRight & "/" & TotQuestions & " correct answers)
End I
End Su
Any suggestions
Allan
I don't want to have to require them to click on a button to see the score. The macro is as follows
Sub QuizResults(
If TotQuestions = 0 The
ActiveWindow.Presentation.Slides(81).Shapes("Results").TextFrame.TextRange.Text = "(Quiz not started yet)
Els
ActiveWindow.Presentation.Slides(81).Shapes("Results").TextFrame.TextRange.Text = "(Your total is: " & TotRight & "/" & TotQuestions & " correct answers)
End I
End Su
Any suggestions
Allan