Thread: skipping lines
View Single Post
  #3  
Old June 8th, 2004, 02:54 PM
Rick B
external usenet poster
 
Posts: n/a
Default skipping lines

Hmmmm. That did not work.

I am looking for the right code for a line feed.

Rick B

"Problem from yesterday" wrote in
message ...
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 Sub


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 test

admin 08/06/2004 9:24 am
test test test

admin 08/06/2004 9:25 am
test test test


Thanks in advance,

Dennis