I have a outlook form and i need to create a attachment files section anyone can help me??
Printable View
I have a outlook form and i need to create a attachment files section anyone can help me??
a quick search in outlook help gets this:
VB Code:
Set myOlApp = CreateObject("Outlook.Application") Set myItem = myOlApp.CreateItem(olMailItem) Set myAttachments = myItem.Attachments myAttachments.Add "C:\My Documents\Q496.xls", _ olByValue, 1, "4th Quarter 1996 Results Chart"