My strLink breaks in half

B

Bob Vance

This is what is being sent on my emails for rtf, it breaks in half with blue
print on top!
http://www.microsoft.com/downloads/details.aspx?FamilyID=95e24c87-8732-48d5-
8689-ab826e7b8fdf&DisplayLang=en%20

Public Function DownloadMessage( _
Optional strFileType As String = "rtf", _
Optional strMessage As String = _
"If you cannot open the attachment " _
& "please download and install the Viewer " _
& "from the following Microsoft link:") _
As String
'Returns E-mail footer with Download link to a viewer
Dim strLink As String

Select Case strFileType
Case "rtf" 'MSWord
strLink =
"http://www.microsoft.com/downloads/...7-8732-48d5-8689-ab826e7b8fdf&DisplayLang=en "
Case "snp" 'Snapshot
strLink =
"http://www.microsoft.com/downloads/...3F-6D74-423D-8274-8B7E6313EDFB&displaylang=en"
Case "PDF" 'Adobe Acrobat
strLink =
"http://www.freedownloadhq.com/acrobat/index.asp?s=goau&a=acrobat"
Case "XLS" 'Excel
strLink =
"http://www.microsoft.com/downloads/...f4-996c-4569-b547-75edbd03aaf0&displaylang=EN"
Case Else
DownloadMessage = ""
Exit Function
End Select

DownloadMessage = Chr(10) & Chr(10) & Chr(10) & Chr(10) & Chr(13) _
& strMessage & Chr(10) & Chr(10) & Chr(13) & strLink _
& Chr(10) & Chr(13)

End Function
 
S

Stefan Hoffmann

hi Bob,

Bob said:
This is what is being sent on my emails for rtf, it breaks in half with blue
print on top!
Enclose the URL in brackets: <yourLongUrl>


mfG
--> stefan <--
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top