VBA Code:
Private Sub Text9_AfterUpdate()
Dim Output As String
Output = Text9
Text9 = Output
Forms![Data Entry Form]![Master Tab Subform]!Text9 = Forms![Data Entry Form]![Master Tab Subform]!Text9 & vbCrLf & Output
End Sub
Ive placed this code in each subform textbox. There's six sub forms with a comment Textbox's that user enters a short comment text & after update it records each to a main summary box. Problem is the code works but when I check the query doesn't it doesnt retain the comments. Ive notice after update it records and paste on one space down inside the text box. And when i manually enter in the summary box it starts on Top left and when i check the query the comments are there.