Auto open Find Record

K

Kevin Sebring

Is there a way when a form is opened that the Find Record box opens up on a
field I want?
 
S

Sprinks

Kevin,

In the On Open event of the form:

Me![YourLookupField].SetFocus
DoCmd.DoMenuItem acFormBar, acEditMenu, 10, , acMenuVer70

Sprinks
 
Top