Start tab order in the Header of a form

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

Guest

I am using an unbound combo box to lookup records in a form...I would like to
have this combo box be the active control on the form. I thought addressing
the tab order would work...but the tabs begin in the detail area...not the
header area. Any Ideas!
 
Hi, Shannon.

Either in the On Load event for a data entry form, or the On Current event:

Me![MyHeaderControlName].SetFocus
 
Back
Top