Hi I have a memo field which some time has a fair few note in it.
I use the following to date stamp it
Me.Comments4 = Comments4 & " " & Now() & " "
Me.Comments4.SetFocus
how do I get the cursor to be at the end of all the data entered into the
field ready to start typing?
At the moment it highlights all the data.
Thanks Bob
> Hi I have a memo field which some time has a fair few note in it.
>
[quoted text clipped - 9 lines]
>
> Thanks Bob
Me.Comments4.Selstart = Len(Me.Comments4)

Signature
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
Bob - 23 Apr 2008 18:13 GMT
Thanks sorted.
Bob
>> Hi I have a memo field which some time has a fair few note in it.
>>
[quoted text clipped - 11 lines]
>
> Me.Comments4.Selstart = Len(Me.Comments4)
Bob - 13 May 2008 19:24 GMT
That works fine thanks
Bob
>> Hi I have a memo field which some time has a fair few note in it.
>>
[quoted text clipped - 11 lines]
>
> Me.Comments4.Selstart = Len(Me.Comments4)