Good Morning,
I am trying to send the current record via e-mail to one of my firms. When i click on my form button to try and send this information i get the following popup box that states "The format in which you are attempting to output the current object is not available" am trying to use Outlook 2007 to send this e-mail.I am using Access 2007 for my database....And Remember I am Still A Newbie.
Private Sub Mail_Report_Click()
On Error GoTo Err_Mail_Report_Click
Dim stDocName As String
Dim stEmail As String
Dim stSubject As String
stDocName = "TrackingSystemReport3"
stEmail = "robert.abernathy@trakamericia.com"
stSubject = "TrackingSystemReport3"
DoCmd.SendObject acSendForm, stDocName, acFormatSNP, stEmail, , , stSubject, , , False
Exit_Mail_Report_Click:
Exit Sub
Err_Mail_Report_Click:
MsgBox Err.Description
Resume Exit_Mail_Report_Click
End Sub