Scroll Bar on Forms

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

Guest

I am using tab controls to move through my forms. When the form opens, the
right scroll bar is not at the top, but a little ways down. This prevents the
tabs from being seen, without moving the scroll bar to the top. I am using a
Form Header and a detail section. How can I make sure the scroll bar on the
right, stays at the top upon opening the form.

Thanks
 
In your form's Load event, SetFocus to a control that can receive the focus
and will result in your form being scrolled to the proper location,

--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
 
Thanks what control would I set it to?

Stephen Lebans said:
In your form's Load event, SetFocus to a control that can receive the focus
and will result in your form being scrolled to the proper location,

--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
 
The top control on the form header?

It sounds as though your TabOrder may not be set correctly. Open the form in
Design view, and take a look at View | Tab Order.
 
Back
Top