P
Problem from yesterday
This is a simple question. Yesterday I needed help with adding date, time and user to a textbox. Today I am wondering if there is a way to make the info skip a line then add the text instead of adding it directly after the first line. The code is as follows
Private Sub Command4_Click(
Notes = Notes & Chr(10) & " " & CurrentUser & " " & " " & Date & " " & " " & Time & " " & " " & [NewNote
End Su
And the output looks like this
admin 08/06/2004 9:23 am test test test admin 08/06/2004 9:24 am test test test admin 08/06/2004 9:25 am test test test
and so, for no matter how long I keep going. Is there a way to make it look like this
admin 08/06/2004 9:23 am
test test tes
admin 08/06/2004 9:24 am
test test tes
admin 08/06/2004 9:25 a
test test tes
Thanks in advance
Denni
Private Sub Command4_Click(
Notes = Notes & Chr(10) & " " & CurrentUser & " " & " " & Date & " " & " " & Time & " " & " " & [NewNote
End Su
And the output looks like this
admin 08/06/2004 9:23 am test test test admin 08/06/2004 9:24 am test test test admin 08/06/2004 9:25 am test test test
and so, for no matter how long I keep going. Is there a way to make it look like this
admin 08/06/2004 9:23 am
test test tes
admin 08/06/2004 9:24 am
test test tes
admin 08/06/2004 9:25 a
test test tes
Thanks in advance
Denni