Hi, i have been working on a questionnaire that will allow me to show a question and then have three possible answers in the form of radio buttons. Users will have to select one then hit the NEXT button to move onto the next question. I have managed to use question case to do this and i can populate my form and the question and answers ok. My problem however, is that i need a way of adding up the scores so that every time the NEXT button is clicked the question is verified and then either adds 1 to a score or adds nothing. Finally this will show in a messagebox after all the questions are answered. I cant find anyhing on my problem and i have no idea what the code could be so i am very stuck. Any help is more than appreciated. The code for one of my questions is below and if any other code is needed please let me know. I have seen this done by my friend and he uses a 'CQUESTION' for the correct answer, although i do not know how he did this and the terms do not allow us to copy each other. Thanks!
lblQuestion.Text = ("How do you change the font style on all slides in a presentation that already has a theme applied?")
rbAnswer1.Text = ("Change the fonts on the slide master")
rbAnswer2.Text = ("After selecting all slides, click Fonts from the Home tab. Then select the new font style(s)")
rbAnswer3.Text = ("Go to the Design tab and click Fonts. Then select the new font style(s)")
If NQUESTION = 1 Then
NQUESTION = NQUESTION + 1