I have a form that has a command button that opens up lotus notes and attaches a report as an .rtf. this works on all of our pc's, but for some reason it attaches as an .xls file one persons computer. any thoughts as to why this is happening?
Code:
Private Sub cmdSendReport_Click()
Dim Subject As String
Dim Body As String
Subject = "Account Verification: #" & Me.AccountNbr
Body = "Please review the attached Verification Report and make any neccessary changes and return to Kendra"
DoCmd.SendObject acSendReport, "rptAccountVerificationQry", acFormatRTF, "", "", "", Subject, Body, False
End Sub