That worked great, what a pain! Thanks!
One last thing, my vbCrLf doesn't seem to work, isn't that supposed to be a
carriage return? Everthing is on the same line and I need it to have an
'enter' after some of the lines...
"Paxton" <> wrote in message
news: oups.com...
>
> Tom Petersen wrote:
>> I have this:
>> 1 emailBody = "<html>" & vbCrLf _
>> 2 & "<head>" & vbCrLf _
>> 3 & "<title>Interpreter Request details</title> " &
>> vbCrLf _
>> 4 & "</head> " & vbCrLf _
>> 5 & "<body> " & vbCrLf _
>> 6 & "<font face=Verdana><b>Interpreter Request
>> details: " & vbCrLf _
>> 7 & "Requestor: </b><u> <% strFName strLName
>> %></u>"
>> & vbCrLf _
>> ...
>> & "</body> " & vbCrLf _
>> & "</html> " & vbCrLf
>>
>> In line 7, I need to display the results of the variables strFName and
>> strLName (and have a space in between the two) but I don't know the
>> proper
>> formatting. If I just use the & then I get the literal strFname instead
>> of
>> the value. Could someone please show me the correct syntax for this?
>>
>> TIA!
>
> Line 7: & "Requestor: </b><u>" & strFName & " " & strLName & "</u>"
> & vbCrLf _
>
> assuming you want a space between strFName and strLName
>
> Paxton
>
|