![]() |
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
|
|||
|
|||
![]()
My organization utilizes conference rooms as resources when creating Outlook
appts. So I can click an Add Rooms button and then select a room to add as a resource within an Outlook meeting request. When I click send the calendar of that resource is updated accordingly. I want to be able to mimic this functionality programmatically, ideally in asp.net but an Outlook Add-In would work as well. I have the code below but it doesn't send anything to the resource. How can I get a list of resources and then schedule that resource for a meeting? Outlook.Application app = this.Application; Outlook.AppointmentItem appt = (Outlook.AppointmentItem)app.CreateItem(Microsoft. Office.Interop.Outlook.OlItemType.olAppointmentIte m); appt.Subject = "test"; appt.Location = "Conf Room - Level 1"; appt.Start = Convert.ToDateTime("1/19/2009 6:00:00 PM"); appt.End = Convert.ToDateTime("1/19/2009 7:00:00 PM"); appt.Body = "Test"; appt.Resources = "Conf Room - Level 1"; appt.RequiredAttendees = ; appt.Save(); Thanks |
Ads |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Private meeting in a Resource Meeting Room Calendar - Outlook 2003 | Training Goddess | Outlook - Calandaring | 0 | December 4th 07 01:59 PM |
showing resource options when creating a meeting request | Chris C | Outlook - Calandaring | 2 | April 25th 07 03:10 PM |
Meeting request is responded to by out of office request -shared c | Jeff Lowenstein | Outlook - Calandaring | 0 | October 30th 06 07:36 PM |
Meeting Request not updating the calendar of resource | Nishanth | Outlook - Calandaring | 0 | April 5th 06 07:58 AM |
Meeting request comes back undeliverable yet request is still rece | Sal F | Outlook - Calandaring | 0 | January 9th 06 05:32 PM |