Ive been fiddling with the xlDialogSendMail ClassMember and would like to know if there is a way to send only one of the sheets in a workbook. Better yet... only a selected range. I have yet to find any information on this that does not involve converting to html. The reason I am opposed to using the xl to html conversion is because for some reason most of the sheets colors turn red when sent in an email using html.
This is what I have so far...
NOTICE!!!! I am not a programmer or VBA freak... so dont go crazy if my code looks funny.
7h4nk$
=D_tW33k_3|2
This is what I have so far...
NOTICE!!!! I am not a programmer or VBA freak... so dont go crazy if my code looks funny.
7h4nk$
=D_tW33k_3|2
Code:
Sub prep_everpt()
MsgBox "Are you sure you want to send the report?"
With Sheet1
Application.Dialogs(xlDialogSendMail).Show arg1:="michael.reutter@thomson.net;"
End With
End Sub