Hi there,
I'm trying to open the form when the cursor sits at the end of the text
that previously was typed, after todays date was inserted on the next line.
It does all that but at first you see only the date, and to be able to see the
previous text you need to scroll with the top arrow otherwise it is invisable.
I've tried: Me.Remarks.SelStart = 0 and I can see the previous text butCode:
Private Sub Form_Current()
Me.Remarks.SetFocus
Me.Remarks = Me.Remarks & vbNewLine & Date
Me.Remarks.SelStart = Len(Me. Remarks)
End Sub
of course the cursor sits in the begining of the page.
what I can do to have it sits after the inserted date and still see the previous text
thanks