I'm trying to email a report of only the current record from my form, but each time all the records print out or only a blank report prints out. Any ideas? Here's how it looks...<br><br>Private Sub Mail_AttachA_Click()<br>On Error GoTo Err_Mail_AttachA_Click<br><br> Dim strToWhom As String<br> Dim strMsgBody As String<br> Dim intSeeOutlook As Integer<br> Dim strRptName As String<br> Dim strWhere As String<br><br> intSeeOutlook = MsgBox("Preview email message?", _<br> vbYesNo, "Attachment A" & Me.Caption)<br><br> If intSeeOutlook = vbNo Then<br> strToWhom = InputBox("Enter Buyer's email address.", "Attachment A"
<br> intSeeOutlook = False<br> End If<br><br> strRptName = "Attachment A"<br> strWhere = "[POCN#]=" & Me![POCN#]<br><br> DoCmd.SendObject acSendReport, strRptName, acFormatRTF, strToWhom, , , _<br> "POCN Attachment A" & Me.Caption, _<br> "Please review the following changes.", strWhere, intSeeOutlook<br><br>Exit_Mail_AttachA_Click:<br> Exit Sub<br><br>Err_Mail_AttachA_Click:<br> MsgBox Err.Description<br> Resume Exit_Mail_AttachA_Click<br><br>End Sub<br>