![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
I have developed an MS Access application for tracking reservations in
training classes. I am now adding the Outlook objects to trigger the system to send an meeting invitation any time someone is registered in a class. However, I'm running into a problem with sending the invitations -- each time I add a person to the list, everyone in the class receives an update to the meeting. When you are working within the Outlook GUI, when you add a name to an existing meeting invitation, you can click on "Send Update" and then select to send the update only to the newly added or deleted names. I would like to emulate that action programmatically. I'm very, VERY new to working with the Outlook object set. Any ideas would be greatly appreciated. |
Ads |
#2
|
|||
|
|||
![]()
AFAIK, there's no property or method in the Outlook Object Model that gives
you control over choosing who to send Meeting Request update notifications to. The only way around this is to use the SendKeys VBA statement to automate clicking the dialog, but it probably won't work anyway - it usually never does work when you want it to in Outlook. -- Eric Legault - Outlook MVP, MCDBA, MCTS (SharePoint programming, etc.) Try Picture Attachments Wizard for Outlook: http://www.collaborativeinnovations.ca Blog: http://blogs.officezealot.com/legault/ " wrote: I have developed an MS Access application for tracking reservations in training classes. I am now adding the Outlook objects to trigger the system to send an meeting invitation any time someone is registered in a class. However, I'm running into a problem with sending the invitations -- each time I add a person to the list, everyone in the class receives an update to the meeting. When you are working within the Outlook GUI, when you add a name to an existing meeting invitation, you can click on "Send Update" and then select to send the update only to the newly added or deleted names. I would like to emulate that action programmatically. I'm very, VERY new to working with the Outlook object set. Any ideas would be greatly appreciated. |
#3
|
|||
|
|||
![]()
Eric,
Wouldn't it depend on the Outlook version? According to http://office.microsoft.com/en-us/ou...276781033.aspx, you can do it (manually) in Outlook 2003. --JP On Jan 14, 1:49*pm, Eric Legault [MVP - Outlook] wrote: AFAIK, there's no property or method in the Outlook Object Model that gives you control over choosing who to send Meeting Request update notifications to. The only way around this is to use the SendKeys VBA statement to automate clicking the dialog, but it probably won't work anyway - it usually never does work when you want it to in Outlook. -- Eric Legault - Outlook MVP, MCDBA, MCTS (SharePoint programming, etc.) Try Picture Attachments Wizard for Outlook:http://www.collaborativeinnovations.ca Blog:http://blogs.officezealot.com/legault/ |
#4
|
|||
|
|||
![]()
The whole issue is getting control of update notifications in code - manually
it works! -- Eric Legault - Outlook MVP, MCDBA, MCTS (SharePoint programming, etc.) Try Picture Attachments Wizard for Outlook: http://www.collaborativeinnovations.ca Blog: http://blogs.officezealot.com/legault/ "JP" wrote: Eric, Wouldn't it depend on the Outlook version? According to http://office.microsoft.com/en-us/ou...276781033.aspx, you can do it (manually) in Outlook 2003. --JP On Jan 14, 1:49 pm, Eric Legault [MVP - Outlook] wrote: AFAIK, there's no property or method in the Outlook Object Model that gives you control over choosing who to send Meeting Request update notifications to. The only way around this is to use the SendKeys VBA statement to automate clicking the dialog, but it probably won't work anyway - it usually never does work when you want it to in Outlook. -- Eric Legault - Outlook MVP, MCDBA, MCTS (SharePoint programming, etc.) Try Picture Attachments Wizard for Outlook:http://www.collaborativeinnovations.ca Blog:http://blogs.officezealot.com/legault/ |
#5
|
|||
|
|||
![]()
So I suppose the only alternative is to send appointments rather than
meeting invitations? |
#6
|
|||
|
|||
![]()
But an Appointment item becomes a Meeting Request as soon as you add another
person to it! The only alternative I see is one Meeting Request per person - but you'll have multiple conflicts. -- Eric Legault - Outlook MVP, MCDBA, MCTS (SharePoint programming, etc.) Try Picture Attachments Wizard for Outlook: http://www.collaborativeinnovations.ca Blog: http://blogs.officezealot.com/legault/ " wrote: So I suppose the only alternative is to send appointments rather than meeting invitations? |
#7
|
|||
|
|||
![]()
I'm going to go out on a limb here and suggest something really
weird... Is it possible to: A. Find a particular appointment/meeting in the calendar based on external criteria (from my database); B. Look at the list of recipients already in the meeting request; C. Compare the name I want to add to the list to see if it is already there (ie, is the list in a simple string format); D. Strip the names already there, storing them in another string; E. Add just the name that I want to send the request to; F. Send the request (with just the one name); G. Add the stripped names back in along with the new name; and H. Save the item back to the folder without triggering another send. Wow, that made my brain hurt... |
#8
|
|||
|
|||
![]()
No, as the meeting will be updated as soon as you call the Send method (as it
has to save first), and that dialog asking how to send the notification will pop up. Otherwise, all that you propose can be coded, but the dialog will still appear if you make changes to the attendees. -- Eric Legault - Outlook MVP, MCDBA, MCTS (SharePoint programming, etc.) Try Picture Attachments Wizard for Outlook: http://www.collaborativeinnovations.ca Blog: http://blogs.officezealot.com/legault/ " wrote: I'm going to go out on a limb here and suggest something really weird... Is it possible to: A. Find a particular appointment/meeting in the calendar based on external criteria (from my database); B. Look at the list of recipients already in the meeting request; C. Compare the name I want to add to the list to see if it is already there (ie, is the list in a simple string format); D. Strip the names already there, storing them in another string; E. Add just the name that I want to send the request to; F. Send the request (with just the one name); G. Add the stripped names back in along with the new name; and H. Save the item back to the folder without triggering another send. Wow, that made my brain hurt... |
#9
|
|||
|
|||
![]()
I've programmed in Excel, Access, and PowerPoint, and I think this is
the first time I've run into a situation where you cannot accomplish something in code that can be done in the GUI. Absolutely stunning. |
#10
|
|||
|
|||
![]()
There are many things you can do in the Outlook UI that cannot be done using
code. For some things there are workarounds, for many others there aren't. If you develop Outlook code you learn to live with that. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm wrote in message ... I've programmed in Excel, Access, and PowerPoint, and I think this is the first time I've run into a situation where you cannot accomplish something in code that can be done in the GUI. Absolutely stunning. |
|
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
How to schedule a meeting without sending an invitation | Mike24601 | Outlook - Calandaring | 6 | December 14th 07 11:44 PM |
Tracking Tab doesn't show up after sending meeting invitation | ozzy | Outlook - Calandaring | 7 | August 15th 07 05:52 AM |
Sending meeting update | gorahilly | Outlook - Calandaring | 0 | January 18th 07 09:44 PM |
Sending a meeting invitation with multiple timeslots | Susannah | Outlook - Calandaring | 1 | July 11th 06 01:31 PM |
Outlook Exchange keeps sending a meeting invitation from long ago | Tom Hilleary | Outlook - Calandaring | 0 | February 22nd 06 08:19 PM |