E
efandango
I have a running quiz form using a dropdown box which is used to compare
answers, all works well, except for...
After I requery a form's underlying query, it goes back to the first record
I want it to go to the next blank field.
Below is the code (for now I have it set to go to Last record which is
preferable to goto first)
If Me.CurrentRecord >= 2 Then
Me.Requery
Me.Recordset.MoveLast
The combo box is: 'Combo_Answer_A'
The (field) control source is: AnswerA
The Form's Row Source is:
SELECT tbl_Final_Points_Test.Run_point_Address_A,
tbl_Final_Points_Test.Point_Quiz_ID FROM tbl_Final_Points_Test ORDER BY
tbl_Final_Points_Test.Run_point_Address_A;
answers, all works well, except for...
After I requery a form's underlying query, it goes back to the first record
I want it to go to the next blank field.
Below is the code (for now I have it set to go to Last record which is
preferable to goto first)
If Me.CurrentRecord >= 2 Then
Me.Requery
Me.Recordset.MoveLast
The combo box is: 'Combo_Answer_A'
The (field) control source is: AnswerA
The Form's Row Source is:
SELECT tbl_Final_Points_Test.Run_point_Address_A,
tbl_Final_Points_Test.Point_Quiz_ID FROM tbl_Final_Points_Test ORDER BY
tbl_Final_Points_Test.Run_point_Address_A;