Attaching Shortcuts to AppointmentItems

G

Guest

Is there an way to put a shortcut to a file into an AppointmentItem? I've
played with dragging and dropping, but it doesn't actually save the shortcut.
The bigger picture is that I want to have an AppointmentItem that has links
to one or more files on a shared drive that related to the AI.
 
M

Michael Bauer [MVP - Outlook]

Here's a VBA sample:

Dim oAppt As Outlook.AppointmentItem
Set oAppt = Application.CreateItem(olAppointmentItem)
oAppt.Body = "<file://d:/test.txt>"
oAppt.Display


--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
-- www.VBOffice.net --

Am Sat, 11 Nov 2006 04:45:01 -0800 schrieb dch3:
 

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