I tried this but
1. Im not getting the time its a string of numbers
2. After the time stamp I need cursor start to be after the stamp so user can start typing ie; 5:34: | <--- Insert Cursor
After they type in and when ready user hits stamp again another time is inserted at next clear line ie;
5:34: Some text mmmmmmmmmmmmmm
mmmmmmm
5:47: | <------ Insertion point
here is the code I tried to modify it
Dim now As Long
now = DateTime.now
Dim myEt As String
Dim myTime As String
myTime = now
If etPatrol.Text <> "" Then
etPatrol.Text = etPatrol.Text & CRLF & myTime & ": "
Else
etPatrol.Text = myTime & ": "
End If