I have a memo field in a table, I entered more than 254 characters into it. I load the memo data into a list box for the user to select it. Then I build an sql statement
like this....
strSQL = "SELECT * FROM Questions_Responses WHERE question = '" & lstSearch.Column(1, itm) & "'"
Problem is if the length of the value in lstSearch.Column(1),itm) is > 254 characters, the select will not bring in the record....how do I handle this...
like this....
strSQL = "SELECT * FROM Questions_Responses WHERE question = '" & lstSearch.Column(1, itm) & "'"
Problem is if the length of the value in lstSearch.Column(1),itm) is > 254 characters, the select will not bring in the record....how do I handle this...