DrGreg1408
Technical User
Hey everyone,
I have a form that has a combobox based on an SQL statement that gathers data from a table that is linked to the form's RecordSource table by an ID field. The field shared by the form's RecordSource and the linked table is called Concern_ID. The combobox also captures a memo field from the table tblConcerns. What I wanted to do is this: When the user selected a concern in the concerns combobox, the memo for that selection (which is in the SQL select statement) is fed into an unbound textbox on the form. All works great except for one major problem. The process truncates the memo to 255 characters, cutting off everything beyond that. I know the problem is related to the SQL statement. So, I am aware of the problem. Is there any other way to accomplish what I want to do without truncating the memo field? I hope my explanation is clear.
I have a form that has a combobox based on an SQL statement that gathers data from a table that is linked to the form's RecordSource table by an ID field. The field shared by the form's RecordSource and the linked table is called Concern_ID. The combobox also captures a memo field from the table tblConcerns. What I wanted to do is this: When the user selected a concern in the concerns combobox, the memo for that selection (which is in the SQL select statement) is fed into an unbound textbox on the form. All works great except for one major problem. The process truncates the memo to 255 characters, cutting off everything beyond that. I know the problem is related to the SQL statement. So, I am aware of the problem. Is there any other way to accomplish what I want to do without truncating the memo field? I hope my explanation is clear.