Form Start - Scrolled down

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

Guest

For whatever reason my form's detail section is starting scrolled down. I
want it to start up showing the top, and the user can scroll down if
needed... instead it starts scrolled to the bottom. I cannot see anything
related to this in the properties of the form or the detail section. Help
please?

Thanks

Ken
 
Ken,

Perhaps the focus is on a control that is near the bottom of the form. Try
seting the focus to a control on top in the forms OnOpen event like this:

Me!ControlName.SetFocus

HTH,
Josh
 
Thanks!

Joshua A. Booker said:
Ken,

Perhaps the focus is on a control that is near the bottom of the form. Try
seting the focus to a control on top in the forms OnOpen event like this:

Me!ControlName.SetFocus

HTH,
Josh
 
Back
Top