I'm building an Access Form to use in helping me study for my quizzes at school. The text box with the answer I have hidden when the Form is first opened, and then when I hit the correct answer button, it displays the correct answer.
Problem: When I navigate to the next question (record) using a button, it still displays the correct answer. I think I can figure this out, but I need the VB code to navigate to the next record. Can anyone help with the code?
This is the code for the Next Question Button.
Private Sub NextQuestion_Click()
'need code for record navigation
Correct_Answer.Visible = False
End Sub
Thanks
Problem: When I navigate to the next question (record) using a button, it still displays the correct answer. I think I can figure this out, but I need the VB code to navigate to the next record. Can anyone help with the code?
This is the code for the Next Question Button.
Private Sub NextQuestion_Click()
'need code for record navigation
Correct_Answer.Visible = False
End Sub
Thanks