Going to next record after making selection from combobox

  • Thread starter Thread starter Alex Martinez
  • Start date Start date
A

Alex Martinez

Hi,

I have a form that contains a combobox of various claims examiners. My
question is How do I go to the next record automatically after a user makes
his selection? The user doesn't want to use the navaigation button. Thank
you in advance.
 
Alex said:
Hi,

I have a form that contains a combobox of various claims examiners. My
question is How do I go to the next record automatically after a
user makes his selection? The user doesn't want to use the
navaigation button. Thank you in advance.

In the AfterUpdate event of the ComboBox execute one line of code...

DoCmd.RunCommand acCmdRecordsGoToNext
 
Back
Top