Does anyone know how to write a code to promt the selection at the last record in the list box?. I have this code below in the "On Click" event, when user click on the code, it close a form, requery the list box, but then I would like the selection to be prompted at the last record.
thanks!
Code:
DoCmd.Close acForm, "frmReview" [Forms]![frmPatientAccount]![lstPtReview].Requery 'woud like to add here a line of code to prompt selection of the listbox to the last record.
Comment