N
Newbie
something like
Me.memo.Value = Me.Text1 & vbCrLf & Me.Text2
HTH
Me.memo.Value = Me.Text1 & vbCrLf & Me.Text2
HTH
Back in the days when I didn't know what a "Memo" field was for I set up
four text boxes on a form for users to add notes. Now I need to concatenate
the data in the four fields and display it in a single memo field.
My problem is that I would really like to separate each of the four combined
strings by a carriage return, otherwise the information will be a little
hard to read. Anyone know how to do that? I experimented with some
solutions, but they didn't even come close to working and they aren't even
worth describing.
Frank
Newbie said:something like
Me.memo.Value = Me.Text1 & vbCrLf & Me.Text2