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
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