text scroll

  • Thread starter Thread starter Rohan via AccessMonster.com
  • Start date Start date
R

Rohan via AccessMonster.com

Is there any way I can get the text box to scroll all the way to the bottom
without having to hold down the
scroll bar down arrow ? I have a user that has a lot of text in a text box
that she needs to append to on
a regular basis and she finds the scrollbar arrows too slow.

Rohan.
 
You can set the textbox's SelStart property to the length of the text that's
in it.

In the form's Current event, use code like:

Private Sub Form_Current()

Me!LongTX.SetFocus
Me!LongTX.SelStart = Len(Me!LongTX & "")

End Sub

Replace LongTX with the name of your textbox
 
Back
Top