![]() |
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 need to access the information in the "Call Information" of the
appointments of a specific calendar in Outlook. The calendar is saved in a public folder, and if you open any of the appointments and select "Call Information" in the "Show" box a form pops up and displays info that was saved there for that meeting. I need access to that information for all the appointments in this calendar, and need to export them into an Excel Spreadsheet. I'm thinking that I need to know where this data is saved? How can I access it? Or how do I find out where it is? Very broad, I know, but any help would be greatly appreciated! -- Message posted via OfficeKB.com http://www.officekb.com/Uwe/Forums.a...g-vba/200902/1 |
Ads |
#2
|
|||
|
|||
![]()
So far I have recieved this code (mixed/pseudo), but I need to know how to
reference the proper library??? If you can help at all, please do! Dim OLApp As Outlook.Application Dim OLNameSpace As Outlook.NameSpace Dim OLCalendar As Outlook.MAPIFolder Dim MyAppointmentItem As Outlook.AppointmentItem Private Sub Command1_Click() Set OLApp = New Outlook.Application Set OLNameSpace = OLApp.GetNamespace("MAPI") Set OLCalendar = OLNameSpace.GetDefaultFolder(olFolderCalendar) Set MyAppointmentItem = OLCalendar.Items.GetFirst Do Until MyAppointmentItem Is Nothing With MyAppointmentItem ' Do whatever End With Set MyAppointmentItem = OLCalendar.Items.GetNext Loop Set OLCalendar = Nothing Set OLNameSpace = Nothing Set OLApp = Nothing End Sub cmonroe21 wrote: I need to access the information in the "Call Information" of the appointments of a specific calendar in Outlook. The calendar is saved in a public folder, and if you open any of the appointments and select "Call Information" in the "Show" box a form pops up and displays info that was saved there for that meeting. I need access to that information for all the appointments in this calendar, and need to export them into an Excel Spreadsheet. I'm thinking that I need to know where this data is saved? How can I access it? Or how do I find out where it is? Very broad, I know, but any help would be greatly appreciated! -- Message posted via OfficeKB.com http://www.officekb.com/Uwe/Forums.a...g-vba/200902/1 |
#3
|
|||
|
|||
![]()
Set a project reference to the Outlook library. How you do that depends on
what language the code was written in. If it's in VBA code then select Tools, References in the VBA project and select Outlook from the list of installed COM libraries. -- 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 "cmonroe21 via OfficeKB.com" u48566@uwe wrote in message news:91e87ca4eee87@uwe... So far I have recieved this code (mixed/pseudo), but I need to know how to reference the proper library??? If you can help at all, please do! Dim OLApp As Outlook.Application Dim OLNameSpace As Outlook.NameSpace Dim OLCalendar As Outlook.MAPIFolder Dim MyAppointmentItem As Outlook.AppointmentItem Private Sub Command1_Click() Set OLApp = New Outlook.Application Set OLNameSpace = OLApp.GetNamespace("MAPI") Set OLCalendar = OLNameSpace.GetDefaultFolder(olFolderCalendar) Set MyAppointmentItem = OLCalendar.Items.GetFirst Do Until MyAppointmentItem Is Nothing With MyAppointmentItem ' Do whatever End With Set MyAppointmentItem = OLCalendar.Items.GetNext Loop Set OLCalendar = Nothing Set OLNameSpace = Nothing Set OLApp = Nothing End Sub cmonroe21 wrote: I need to access the information in the "Call Information" of the appointments of a specific calendar in Outlook. The calendar is saved in a public folder, and if you open any of the appointments and select "Call Information" in the "Show" box a form pops up and displays info that was saved there for that meeting. I need access to that information for all the appointments in this calendar, and need to export them into an Excel Spreadsheet. I'm thinking that I need to know where this data is saved? How can I access it? Or how do I find out where it is? Very broad, I know, but any help would be greatly appreciated! -- Message posted via OfficeKB.com http://www.officekb.com/Uwe/Forums.a...g-vba/200902/1 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
exporting distribution lists to Excel spreadsheet | Noe1better | Outlook - Using Contacts | 5 | December 13th 09 12:09 PM |
outlook 2003 macro to extract calendar appointment info to Excel | CPOjoe | Outlook - Calandaring | 3 | July 15th 08 04:04 PM |
Exporting Calendar Info Into Excel | amysmel | Outlook - Calandaring | 10 | March 11th 08 07:39 PM |
How do I import contact info from an excel spreadsheet to outlook | CLF8475 | Outlook - Using Contacts | 2 | September 8th 06 02:31 AM |
Linking an Excel Spreadsheet to Outlook | KevinM | Outlook - Calandaring | 1 | February 15th 06 10:51 PM |