G
Guest
I have a db that I have set up so that when the user click a Com btn it will send a E-mail to the address in the record.
At this time I have it so the Email Address, Subject line work great. But when I get to the message text part of the code
[First Name] & "," & "Whats Up with your " & [Blueprint INFO], , Tru
I would like the text to look like this
Keit
Whats Up with your ca
I do not know how to get it to start a new line, Any help would be great!!
As is it now I get it all on one line like this
keith Whats Up with your ca
Thanks for any help that you can provide
here is the full code
Private Sub Command_26492_Click(
DoCmd.SendObject acSendNoObject, , , [EMailAdd], , , [First Name] & " " & [Blueprint INFO], [First Name] & "," & "Whats Up with your " & [Blueprint INFO], , Tru
End Sub
At this time I have it so the Email Address, Subject line work great. But when I get to the message text part of the code
[First Name] & "," & "Whats Up with your " & [Blueprint INFO], , Tru
I would like the text to look like this
Keit
Whats Up with your ca
I do not know how to get it to start a new line, Any help would be great!!
As is it now I get it all on one line like this
keith Whats Up with your ca
Thanks for any help that you can provide
here is the full code
Private Sub Command_26492_Click(
DoCmd.SendObject acSendNoObject, , , [EMailAdd], , , [First Name] & " " & [Blueprint INFO], [First Name] & "," & "Whats Up with your " & [Blueprint INFO], , Tru
End Sub