Going to next record after making selection from combobox

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.
 
R

Rick Brandt

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
 
Top