Set Focus on Combo Box, How Do I ?

  • Thread starter Thread starter Dave Elliott
  • Start date Start date
D

Dave Elliott

I have a Combo Box that after code executes I need to set focus on this
Control.
The Name of the Control is Combo6 and it's control source is Employee.
The forms name is Sales Calls.

Thanks in Advance,

Dave
 
Forms![Sales Calls]!Combo6.SetFocus

This can be shortened if the code is being run on the form Sales Calls to

Me!Combo6.SetFocus
 
Back
Top