B
BBB
hi,
i have set a form up in excel and created a command button to email the
completed form back. there is an option for a new email message in outlook
to have a voting component, such as approve or reject. how do i add this
command to the below macro?
Private Sub CommandButton1_Click()
Dim OutApp As Object
Dim OutMail As Object
Set OutApp = CreateObject("Outlook.Application")
Set OutMail = OutApp.CreateItem(0)
With OutMail
..To = ""
..CC = ""
..BCC = ""
..Subject = "Order"
..Body = ""
..Attachments.Add ActiveWorkbook.FullName
..display
End With
Set OutMail = Nothing
Set OutApp = Nothing
End Sub
i have set a form up in excel and created a command button to email the
completed form back. there is an option for a new email message in outlook
to have a voting component, such as approve or reject. how do i add this
command to the below macro?
Private Sub CommandButton1_Click()
Dim OutApp As Object
Dim OutMail As Object
Set OutApp = CreateObject("Outlook.Application")
Set OutMail = OutApp.CreateItem(0)
With OutMail
..To = ""
..CC = ""
..BCC = ""
..Subject = "Order"
..Body = ""
..Attachments.Add ActiveWorkbook.FullName
..display
End With
Set OutMail = Nothing
Set OutApp = Nothing
End Sub