I have a "Notes" section on my main form. Notes can be typed manually, or pre-formatted note entries can be entered by calling up a sub form, selecting a note from a drop-down list and it automatically inserts. The only problem is my drop-down list will only enter one selection. If I need more than one, it overwrites whatever is already in the box. How can I select a note, and then after it inserts select a second note and have it insert behind the first one and so forth? Here is my AfterUpdate event:
Private Sub Notes_AfterUpdate()
Forms![Purchase Order Data].GeneralNotes.Value = Notes.Value
DoCmd.Close
End Sub
Thanks!
Private Sub Notes_AfterUpdate()
Forms![Purchase Order Data].GeneralNotes.Value = Notes.Value
DoCmd.Close
End Sub
Thanks!