Position cursor at end of memo field

  • Thread starter Thread starter Jack
  • Start date Start date
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
 
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])
 
Back
Top