NorwalkPhil
Programmer
My subform displays a list of various types of problems. When the user clicks on a particular problem, the suggested fix is displayed in a textbox on the main form.
Everything works fine except that the data is truncated to 255 characters.
Main form = ODS2Dashboard
Textbox on ODS2Dashboard = tbSuggestedFix
Subform = mySubform
Memo field in the query that mySubform is bound to = [SuggestedFix]
Code from On Current event of mySubform:
Private Sub Form_Current()
Forms!ODS2Dashboard!tbSuggestedFix.Value = [SuggestedFix]
End Sub
I need to prevent the data from being truncated.
Sure seems easy enough...
I'd greatly appreciate any suggestions!
Everything works fine except that the data is truncated to 255 characters.
Main form = ODS2Dashboard
Textbox on ODS2Dashboard = tbSuggestedFix
Subform = mySubform
Memo field in the query that mySubform is bound to = [SuggestedFix]
Code from On Current event of mySubform:
Private Sub Form_Current()
Forms!ODS2Dashboard!tbSuggestedFix.Value = [SuggestedFix]
End Sub
I need to prevent the data from being truncated.
Sure seems easy enough...
I'd greatly appreciate any suggestions!