Move to specific Field

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a Form with a Lookup Box for looking up numbers and when selected I
would like the cursor to move to a nominated field within that record. I
gather I could write an "On Exit" Event Procedure, but need to know the code.
Thanks for any assistance
 
I think you are referring to a ComboBox and you can use the
ComboBox_AfterUpdate Event to move the Focus to the other Control.

Thecode should be something like:

Me.OtherControl.SetFocus
 
Back
Top