Thank you for responding. I was very vague. It is a project for class and it requires that I display a question(proverbs) one at a time. There are seven. Have the user select true or false. Then calculate the number of correct answers and display a message accordingly. I am not sure how to get them to display one at a time. Here is the code I have written so far:
Private Sub cmdNext_Click()
Dim QuesNum%, Question$, CorrectNum%, Message$
' display seven true or false proverbs one at a time
' calculate the number of correct answers and the display correct numbers with a text messages.
For QuesNum% = 1 To 7
Select Case QuesNum%
Case Is = 1
Question$ = "1. The squeaky wheel gets the grease."
Case Is = 2
Question$ = "2. Cry and you cry alone."
Case Is = 3
Question$ = "3. Opposites attract."
Case Is = 4
Question$ = "4. Spare the rod and spoil the child."
Case Is = 5
Question$ = "5. Actions speak louder than words."
Case Is = 6
Question$ = "6. Familiarity breeds contempt."
Case Is = 7
Question$ = "7. Marry in haste, repent at liesure."
End Select
Next
End Sub
Thanks again,
Ed