(I assume you are using WinForms)
What you said you already tried works.
If you handle the Enter event in a text field, you can set it to nothing:
Private Sub textBox_Enter(ByVal sender As Object, ByVal e As EventArgs)
Dim position As Integer = textBox.Text.Length
textBox.Select(position, position)
End Sub
, , . .