Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Include Hyperlink using SendObject Method

Status
Not open for further replies.

illini

Technical User
Aug 2, 2002
89
0
0
FR
I'm using the following vba string to create an email with a report attached:

DoCmd.SendObject acSendReport, Report_Name, "snapshot format"

I'm using the snapshot format. (Adobe .pdf is not an option.) I would like to include a link to download the Snapshot Viewer from MicroSoft. The only place I can think of placing the link is in the body of the email.

DoCmd.SendObject [objecttype][, objectname][, outputformat][, to][, cc][, bcc][, subject][, messagetext][, editmessage][, templatefile]

The problem is that the link is rather lengthy.

[/color]

I would like to create something which would display "Download Snapshot Viewer" but would take the user to the above link.

Can anyone assist me? I would also appreciate other ideas on how to accomplish this using other methods.



-illini
 
sorry,

it seems what I wrote got truncated :
the correct syntax is
<A HREF=&quot;hyperlink&quot;>Download SnapShot Viewer</A>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top