Shifting the screen up after tabbing from a form field

C

Craig

Hi,

I have a form that only permits fill in text into form fields scattered over
10 pages...yet when I tab to a new form field, it bings me to the field at
the bottom of the screen so I then manually have to scroll down to move the
screen up to make it easier to see the text that I am typing.

Is there a way to program the screen to scroll up when I tab to certain
fields so the field will automatically appear at the top or top middle area
of the screen?

Thank you !

Craig Brody
 
F

fumei via OfficeKB.com

One possibility could be scrolling via a OnEntrry macro for the formfields.

Sub MoveMe()
ActiveDocument.ActiveWindow.SmallScroll Down:=7
End Sub

would scroll down - and thus move the formfield UP - 7 lines.

Put in as the OnEntry macro, when you tab into the formfield, it scrolls 7
lines.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top