Scroll while tabbing through fields

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

Guest

I created a form that goes down past the view of the screen requiring the
user to manually scroll down to view the bottom half of the form.
Is there a way so that as your tabbing through the fields for it to scroll
the form down as you tab automatically, keeping the active field always
visible?
 
I created a form that goes down past the view of the screen requiring the
user to manually scroll down to view the bottom half of the form.
Is there a way so that as your tabbing through the fields for it to scroll
the form down as you tab automatically, keeping the active field always
visible?

You might instead want to consider using a Tab Control on your form;
rather than fields scrolling offscreen, you can have them on a second
or third tab page. In the LostFocus event of the last textbox on the
first tab page, you can SetFocus to the first control on the second
page.

John W. Vinson[MVP]
 
Back
Top