scroll bar on memo field

  • Thread starter Thread starter Melanie
  • Start date Start date
M

Melanie

I would like to find out how can I permanently keep the scroll bar in the
memo field jumping from record to record in a form

thanks Melanie
 
Are you asking two questions? Do you want to permanently display the scroll
bar?

What does the phrase "jumping from record to record in a form" mean in this
sentence?
 
I have navigation buttons which you can use to move from record to record,
if I open the form the memofield is set to tab 0 sit it has a scroll bar but
when you push the next button the scroll bar disappears our of the memofield
which is understable but I want the scroll bar permanent in each memofield
 
Melanie said:
I have navigation buttons which you can use to move from record to
record, if I open the form the memofield is set to tab 0 sit it has a
scroll bar but when you push the next button the scroll bar
disappears our of the memofield which is understable but I want the
scroll bar permanent in each memofield

The scrollbar should be visible whenever the control has focus. There is no
way to show it when it loses focus which is what happens when you click your
navigation button (the button now has focus).

You could add code to your navigation button to return focus to the Memo
field control.
 
Back
Top