Form Events When Navigating

  • Thread starter Thread starter CJM
  • Start date Start date
C

CJM

Can someone tell me what Form events are triggered when a
user is navigating through the data using the Navigation
keys without making any changes; > Forward 1 Record, < Back
1 Record, >> Last Record, << First Record.

A dependant comboBox (i.e. one whose RowSource is dependant
upon another control) sometimes show blank in the textbox
yet the data is in the table. I suspect that I need to
Requery the combobox but am unsure where to so it.

TIA
 
If the RowSource of the ComboBox depends on the value of another Field /
Control, you usually need to requery the ComboBox in the Form_Current Event
and the AfterUpdate Event of the other Control.
 
Back
Top