Form Scroll

  • Thread starter Thread starter Briank
  • Start date Start date
B

Briank

I have created a form but when I go from design mode to
form view Access is placing the form at an odd position.
I then have to manually adjust the scroll bars to the
upper left. Is there some sort of Cntl-Home command upon
the opening of a form - either in the setup or code?
Thanx.
 
You might want to try putting the following line of code in the Open Event
of your form:

Me![MyFirstField].SetFocus

Change MyFirstField to the name of the control that is the first control on
your form - the one closest to the upper left corner of the form.

hth,
 
Back
Top