You've forgot to include the name of the textbox. Me refers to the form: you
need something like:
Me.Text1.SelText = Chr(13)
It may also be necessary to ensure that focus is on the textbox:
Me.Text1.SetFocus

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
Tried that, but the SelText is not available
All that is available is SelHeight, SelLeft, SelTop, SelWidth
I need to get SelText to be a recognizable member.
> You've forgot to include the name of the textbox. Me refers to the form: you
> need something like:
[quoted text clipped - 4 lines]
>
> Me.Text1.SetFocus
Douglas J Steele - 24 Nov 2005 13:30 GMT
Did you also use SetFocus, as I suggested?

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
> Tried that, but the SelText is not available
> All that is available is SelHeight, SelLeft, SelTop, SelWidth
[quoted text clipped - 9 lines]
> >
> > Me.Text1.SetFocus