G
Guest
Hi to All.
I am trying to create a "test" at the end of a presentation. I need to be
able to count the number of questions answered and the number of correct
answers. The last slide will be a presentation of a certificate with the
user's name and their results to be printed.
The two things that are not working are the counting of the variable and
placing the results into a textbox on the last slide as soon as the slide is
presented. The format is Scenario 1, 2 slides choosing an answer, Scenario
2, 2 slides of choosing an answer, Scenario 3, 2 slides choosing an answer,
then Four Scenarios each followed by one slide choosing an answer. The
choices are in an OptionButton Group unique for each slide.
First, I must tell you I am using PowerPoint 2000 for this.
The variables I have declared are:
Public Answer As String
Public Count, PercentCorrect As Integer
From reading some of the posts here and PPT Help, I think I will have to
change the variable Count to something else. However, when I run the script,
the variable will change between the first two slides but reset on each slide
after that.
The code I use to increase count is
Count = Count +1
PercentCorrect = PercentCorrect + 1 (0 for incorrect answers)
Thanks to all for any and all help.
I am trying to create a "test" at the end of a presentation. I need to be
able to count the number of questions answered and the number of correct
answers. The last slide will be a presentation of a certificate with the
user's name and their results to be printed.
The two things that are not working are the counting of the variable and
placing the results into a textbox on the last slide as soon as the slide is
presented. The format is Scenario 1, 2 slides choosing an answer, Scenario
2, 2 slides of choosing an answer, Scenario 3, 2 slides choosing an answer,
then Four Scenarios each followed by one slide choosing an answer. The
choices are in an OptionButton Group unique for each slide.
First, I must tell you I am using PowerPoint 2000 for this.
The variables I have declared are:
Public Answer As String
Public Count, PercentCorrect As Integer
From reading some of the posts here and PPT Help, I think I will have to
change the variable Count to something else. However, when I run the script,
the variable will change between the first two slides but reset on each slide
after that.
The code I use to increase count is
Count = Count +1
PercentCorrect = PercentCorrect + 1 (0 for incorrect answers)
Thanks to all for any and all help.