Comrades, help me now!

Users questions: I would like to use the VBA function PowerPoint2003 interactive quiz to be a single answer courseware, should we do? Best process in detail. This is the answer to automatically determine the correctness of the single answer
Experts answer:PowerPoint make automatic interactive courseware for teachers in every class Q & A end Ago, used to stay a few Road let students self-practice exercises to consolidate when the lesson learned. If you do it with the corresponding PowerPoint presentation, you can use the VBA function, so these exercises with interactive features. Figure 1, this is a sample answer interface, you can determine the correctness of the answer The multiple-choice questions, let's look at specific steps. 1. Start PowerPoint2003 (similar to other versions of operations), open the appropriate courseware presentation, navigate to the production of exercises slide, enter the casual working character. 2. Implementation of the "View Toolbars Control Toolbox "Command, expand the" Control Toolbox ", click one of the" box "button, then drag the slide in a check box. 3. Select the check box (CheckBox1), click" Control Toolbox "on the" Properties "button, open the" Properties "dialog box, switch to the" press Category Order "tab, expand the" Appearance "option to one of the" Caption "changes the character behind the appropriate option for the title character (such as" water "), and then expand," Font "option, click on the right side" ellipsis "button, open the" Font "dialog box, set up font, size, etc.. Tips : Control of other attributes can use the default property. 4. Copy the above box to copy the three (according to the number of equipment options to determine copy number), respectively, "Caption" property to modify the other options for the title character (such as "soda ash, hydrated lime, dry ice"). 5. Then "Control Toolbox" The "command button" add a button in the slide and the "Caption" property changed to "judge" (or other characters). Double-click the button again to enter the "VisualBasic Editor" state (Figure 4), will enter the following code to occur among a group of code, lose Entry is complete, close the window to return. IfCheckBox1.Value = TrueAndCheckBox4.Value = TrueThenMsgBox "choose the right.", VbOKOnly, "result" ElseIfCheckB ox1.Value = TrueOrCheckBox4.Value = TrueThenMsgBox "picked the right one.", vbOKOnly, "prompt" ElseMsgBox "wrong choice! The correct answer is" water and dry ice "!", vb OKOnly, "prompt" EndIfEndIf Tips: The above code means that, if (If) selected the No. 1 and No. 4 (CheckBox1.Value = TrueAndCheckBox4.Value = True), press the "judge "Button to pop up as shown in Figure 3, interface and message (MsgBox) box (choose wrong! The correct answer is" water and dry ice "! - Message content; vbOKOnly - a message box to display only a" OK "button; Reminder - the message box title). If you select only the first one or 4, it will pop up a message box as shown; other options will pop up a message box as shown. 6. A copy of the above command button, the "Caption" property changed to "re-election"), and then double-click the button, enter the following code to occur among a group of code, enter the complete, relevant Close window to return. CheckBox1.Value = FalseCheckBox2.Value = FalseCheckBox3.Value = FalseCheckBox4.Value = False7. In the demo, study Students make the appropriate selections, press the "judge" button to make appropriate judgments; if that choice is wrong, click the "re-elected" button to re-select.
  • This information provided by the users.Thanks!