M
Mark
Hi All,
I am using
http://www.everythingaccess.com/tutorials.asp?ID=Outlook-Send-E-mail-without-Security-Warning
to send an email with a report attached. My problem is I don’t know how to
get the report attached using his procedure. He has a procedure in the VB to
so it, but just over my head I guess.
How can I get an access report attached to the email using this procedure
(link above)?
Here’s what he has:
'Add any specified attachments
TempArray = Split(strAttachments, ";")
For Each varArrayItem In TempArray
strAttachmentPath = Trim(varArrayItem)
If Len(strAttachmentPath) > 0 Then
.Attachments.Add strAttachmentPath
End If
Next varArrayItem
I am using
http://www.everythingaccess.com/tutorials.asp?ID=Outlook-Send-E-mail-without-Security-Warning
to send an email with a report attached. My problem is I don’t know how to
get the report attached using his procedure. He has a procedure in the VB to
so it, but just over my head I guess.
How can I get an access report attached to the email using this procedure
(link above)?
Here’s what he has:
'Add any specified attachments
TempArray = Split(strAttachments, ";")
For Each varArrayItem In TempArray
strAttachmentPath = Trim(varArrayItem)
If Len(strAttachmentPath) > 0 Then
.Attachments.Add strAttachmentPath
End If
Next varArrayItem