Dear Experts,
When using textbox (note) to append memo (Notes), how can I have new entries entered before existing text so that new entry appear at the top? (Line2 before Line1) - Sample attached.
Command button on click code:
Also, anyone please clarify why memo field on table does not display (but not empty as form displays field text)
Thank you so much.
When using textbox (note) to append memo (Notes), how can I have new entries entered before existing text so that new entry appear at the top? (Line2 before Line1) - Sample attached.
Command button on click code:
is used to append values to memo field.Private Sub Command4_Click()
Me.Notes = Me.Notes & vbCrLf & Me.note
End Sub
Also, anyone please clarify why memo field on table does not display (but not empty as form displays field text)
Thank you so much.