Hi All,
I am currently using the code below to populate email attachment list from a list box on my form.
i would like to know if it can also be done with a subform control. EG
select multiple rows in subform and use that to create the attachment list?
Code:'get attachments With myItem For Each vItem In lst.ItemsSelected If Not IsNull(vItem) Then myItem.Attachments.Add = lst.ItemData(vItem) End If Next Set lst = Nothing End With