Private Sub Command280_Click()
newnotes.SetFocus
notes = CurrentUser() & Now() & newnotes.Text & notes.OldValue
End Sub
The above code shows the gist of what I want.
The newnotes memo field is unbound, and the notes field is locked.
If I could format the text the way I wish, it would look something like this
Joe.Speedytyper 2002-07-04 10:00 am said:
blah blah blah
jenny.quickfinger 2002-07-01 10:10 am said:
really blah blah
and so on and so on
Trouble is, using concatenation, everything sticks together, I can't (or don't know how to) enter a carriage return or bold certain pieces of the text. Seems to me this is pretty ordinary trouble ticket type of stuff, but for the life of me I can't figure this one out. Please help, it is the last thing I need to do to complete my project!! Thanks.
newnotes.SetFocus
notes = CurrentUser() & Now() & newnotes.Text & notes.OldValue
End Sub
The above code shows the gist of what I want.
The newnotes memo field is unbound, and the notes field is locked.
If I could format the text the way I wish, it would look something like this
Joe.Speedytyper 2002-07-04 10:00 am said:
blah blah blah
jenny.quickfinger 2002-07-01 10:10 am said:
really blah blah
and so on and so on
Trouble is, using concatenation, everything sticks together, I can't (or don't know how to) enter a carriage return or bold certain pieces of the text. Seems to me this is pretty ordinary trouble ticket type of stuff, but for the life of me I can't figure this one out. Please help, it is the last thing I need to do to complete my project!! Thanks.
