Linking Outlook request into a Word Document

  • Thread starter Thread starter Damon
  • Start date Start date
I can think of a couple of ways to do this. If the user is willing to enable
Word macros, you could include Outlook automation code. Or, you could save
the desired appointment information as an iCalendar .ics file on your
network and put in a link to that file.
 
What I would like to do is Start a Word document with an
agenda then at the end have e link to add to that persons
calendar. But I cant figure out how to insert my created
request into the word document. And I am not familiar
with the automation tool you have mentioned. I cannot
use iCalendar becuse there will be persons from different
networks and not all have access to mine. Can you give
me any guide on this??
 
Not "automation tool" but "automation" -- as in writing VBA code to automate
Outlook. You can create any new item with Outlook's Application.CreateItem
method. Have you written your own macros before (not just recorded them in
Word)?

Once you have the macro working the way you want it to, you can follow the
instructions at
http://office.microsoft.com/assistance/hfws.aspx?AssetID=HP051861711033&CTT=4&Origin=EC010227241033
to add a macrobutton field to your word document that users can double-click
to run the macro. The user of the document, of course, would have to allow
your macro to run.

If you're new to use VBA with Outlook, these web pages should help you get
started:

http://www.outlookcode.com/d/vb.htm

http://www.winnetmag.com/Articles/Index.cfm?ArticleID=21522&pg=1


--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
Back
Top