Jonathan Kok
Registered User.
- Local time
- Today, 14:16
- Joined
- Jan 27, 2000
- Messages
- 116
I have a text box (based on a "Memo" Data Type Field), and I want multiple lines of information to be entered into it at the click of a button. But, it can't erase what's already in the text box; I want it to append to the end of the text as a new line in the same field. The current code is as follows:
dim note as string
note = "whatever"
[ordnotes] = [ordnotes] & chr$(13) & note
All I get is a funky character in the middle of what becomes a run-on sentence. WHY doesn't this work? How can I get it to work?
dim note as string
note = "whatever"
[ordnotes] = [ordnotes] & chr$(13) & note
All I get is a funky character in the middle of what becomes a run-on sentence. WHY doesn't this work? How can I get it to work?