Hi everyone,
I have a form that attaches files to emails out of a specific folder.
My problem is i can only select one file from the folder and i need to attach more than one.
Does a0nyone know how to allow multiple attachments, i have tried "ctrl" and clicking on more than one but no joy and "shift" and the arrow keys.
Any ideas on this?
Here is my code
Code
Private Sub CommandButton3_Click()
' setting and attaching the work book
Dim MyPath As String
Dim SaveDriveDir As String
Dim saveasname As String
SaveDriveDir = CurDir
MyPath = "c:\eform\local"
ChDrive MyPath
ChDir MyPath
Attachment1 = GetAttach
attach.Text = Attachment1
ChDrive SaveDriveDir
ChDir SaveDriveDir
End Sub
Display More