MS POWERPOINT VBA QUIZ

Аватар автора
Градации литературы
Welcome to our YouTube tutorial on creating an interactive quiz with results using MS PowerPoint VBA! In this video, we will guide you step-by-step through the process of leveraging VBA (Visual Basic for Applications) to design a dynamic quiz in PowerPoint. With our easy-to-follow instructions, you&learn how to create multiple-choice questions, track user responses, calculate scores, and generate personalized results based on performance. Whether you&an educator, trainer, or just looking to engage your audience, this tutorial will equip you with the knowledge to build your own customized quiz that delivers immediate feedback. Join us now and unleash the power of PowerPoint and VBA to create an interactive and engaging learning experience! VBA CODE: Public totalscore As Integer Sub CorectAnswer() MsgBox "Yes,you are right!" totalscore = totalscore + 1 ActivePresentation.SlideShowWindow.View.Next End Sub Sub WrongAnswer() MsgBox "Sorry, Wrong Answer!" ActivePresentation.SlideShowWindow.View.Next End Sub Sub initializes() totalscore = 0 ActivePresentation.Slides(6).Shapes("score").TextFrame.TextRange = "" ActivePresentation.SlideShowWindow.View.Next End Sub Sub viewscore() ActivePresentation.Slides(6).Shapes("score").TextFrame.TextRange = totalscore End Sub

0/0


0/0

0/0

0/0