Memo Box Jumping

M

Matt at the VA

I have a memo box that grows as needed and a scroll bar that appears when I
click on the box. However, the content in the box jumps back to the top if I
click elsewhere in the form (to update a field with data residing in the memo
box.
 
K

Klatuu

Use the Got Focus event of the text box to which your memo fiekd is bound.

Me.txtMyMemo.SelStart = Len(Me.txtMyMemo) -1
 
Top