Position cursor at end of memo field

J

Jack

I have a memo field with existing data. When the user enters the memo field
to Add new data,
I want to position the cursor at the end of this data preferably on a new
line.
Is this possible?
thanks
 
F

fredg

I have a memo field with existing data. When the user enters the memo field
to Add new data,
I want to position the cursor at the end of this data preferably on a new
line.
Is this possible?
thanks

Code the memo control's Enter event:
Me![MemoControlName] = Me![MemoControlName] & vbNewLine
Me![MemoControlName].SelStart = Len(Me![MemoControlName])
 
Top