Mailbox Calendars

  • Thread starter Thread starter Wanda
  • Start date Start date
W

Wanda

Created a custom appointment form and when all the options
were selected, the form went to the specific folder
under "Public Folders" ... such as:

If cboCalValue = "Cal - 3A" Then
Item.Recipients.Add ("(e-mail address removed)
<mailto:[email protected]>")

******************
Now I need this form to go to a specific Mailbox (WST-
PWGSC), a subfolder named (Regina) and then to the
specific calendar (PWGSC Exec Calendar). Is this
possible? What type of coding ... similar to the above
for Public Folders? Thanks very much.

Wanda
 
You cannot address an item to a particular folder. You can create a new item in that folder (assuming you have permissions) with the MAPIFolder.Items.Add method. You would need to have the mailbox visible in your folder list.
--
Sue Mosher, Outlook MVP
Outlook and Exchange solutions at http://www.slipstick.com
Author of
Microsoft Outlook Programming: Jumpstart
for Administrators, Power Users, and Developers
 
Back
Top