I have a button on my form that will open up and email message in outlook. I need to be able to prefill out the body of the email with two separate paragraphs. The problem I am having is I can't get a carriage return to work between the paragraphs..it keeps showing up as one big paragraph. I've tried Chr(10) & Chr(13) and that doesn't work. Here is my code:
Private Sub NotifyCustomer_Click()
Dim emailrec As String
Dim intoptions As Integer
Dim stLinkCriteria As String
Dim title As String
Dim resp As Byte
Dim desc As String
Dim cr As String
cr = Chr(13) & Chr(10)
stLinkCriteria = Me![BRD Type] & "-" & Me![BRD Number]
title = Me![BRD Title]
desc = Me![BRD Description]
resp = MsgBox("Would you like to send an email to the customer informing them of the status of this Request?", vbOKCancel)
If resp = vbOK Then
DoCmd.SendObject acSendNoObject, , , , , , "Status of Wholesale Support Request" + " - " + title + " - " + stLinkCriteria, "This is to inform you that " + stLinkCriteria + " has been completed. Please use this number to reference this request in any communication with Wholesale Support. Thank you." + cr + desc
End If
End Sub
Any ideas???
Private Sub NotifyCustomer_Click()
Dim emailrec As String
Dim intoptions As Integer
Dim stLinkCriteria As String
Dim title As String
Dim resp As Byte
Dim desc As String
Dim cr As String
cr = Chr(13) & Chr(10)
stLinkCriteria = Me![BRD Type] & "-" & Me![BRD Number]
title = Me![BRD Title]
desc = Me![BRD Description]
resp = MsgBox("Would you like to send an email to the customer informing them of the status of this Request?", vbOKCancel)
If resp = vbOK Then
DoCmd.SendObject acSendNoObject, , , , , , "Status of Wholesale Support Request" + " - " + title + " - " + stLinkCriteria, "This is to inform you that " + stLinkCriteria + " has been completed. Please use this number to reference this request in any communication with Wholesale Support. Thank you." + cr + desc
End If
End Sub
Any ideas???