I have a column in my database that is set to memo. I am trying to view the data in a textbox.
I have enabled new line in field from the Enter Key Behaviour property but all the data from the record is now showing - What am I missing?
The data is being pulled from a list box, example code below:
Textbox1 = listbox.column(1)
Thanks in advance
This has nothing to do with the
EnterKeyBehavior
property of the text box.http://allenbrowne.com/ser-63.html
You'll need a different method to load the text box, e.g. read the ID from the listbox and use
DLookup()
.