end of a text area

J

JoeandTel

When a form loads w/ populated data, is there a way to have text areas automatically to to the end instead of having to scroll to the end?
 
V

Van T. Dinh

Use the Control_GotFocus to set the SelStart to the end of the Text. Use
Len() to find where the end of the Text is.

Check Access VB Help on the SelStart Property.

--
HTH
Van T. Dinh
MVP (Access)




JoeandTel said:
When a form loads w/ populated data, is there a way to have text areas
automatically to to the end instead of having to scroll to the end?
 
Top