No problem. Not sure why the code didn't work entirely, but there you have it.
If you still want the selection to be at the top, you can simplify the code to be:
Me.txtTest.SelStart = 0
If you want to have another go at it starting at the bottom, try this expression instead:
Me.txtTest.SelStart = Nz(Len(Me.txtTest), 0)