The Code Cage - Microsoft Office help Free Microsoft Office Help for all Applications!  

To stop seeing these ads and get other benefits check This page!

Go Back   The Code Cage Forums > Newsgroups - Microsoft Topics > Newsgroup - Outlook Forum > Outlook Macro's & VBA
  Chat In Use Now! Microsoft Office Chat Online now!


Outlook Macro's & VBA Post questions in this forum if they are related to using Microsoft Outlook VBA & Macro's to automate tasks.

Hey there!

It looks like you're enjoying but haven't created an account yet. Why not take a minute to register for your own free account now? As a member you get free access to all of our forums and posts plus the ability to post your own messages, communicate directly with other members and much more. Register now!

Already a member? Login at the top of this page to stop seeing this message.


Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 20th January 2010, 06:17 AM
Sindhura
Newsgroup Contributor


My Top Tip Count:

 
Posts: n/a
Chats:
Default How to extract outlook calendar data.

------ Register to get rid of these "In Post" ads! ------


Hi,
I want to extract the calender data (i.e the data of all the shared
calenders)

I am creating an Add-in for Outlook in Vb.net . I need to read the meetings
between a given duration from a shared calendar. I will give the shared
calendar names ( around 20) with time and i need to know which all calendars
and free and which all are busy at that specific time.
I already tried to read the calendars in a loop and its taking a lot of time
to read each calendar.so i wanted to know if there is a faster way of doing
this.

Can anyone let me know where does this data get stored and how to extract
the same.

I am using outlook 2003.

~ Sindhura
Reply to this post


Did you find this post helpful? Yes | No
The Code Cage Advertisment
Advertisement

To stop seeing these ads and get other benefits check This page!
  #2 (permalink)  
Old 20th January 2010, 09:33 AM
Michael Bauer [MVP - Outlook]
Newsgroup Contributor


My Top Tip Count:

 
Posts: n/a
Chats:
Default Re: How to extract outlook calendar data.

------ Register to get rid of these "In Post" ads! ------



With the Redemption library (www.dimastr.com) you can read the data very
fast. There's a lot of help and code examples on the website. See the
MapiTable object.

--
Best regards
Michael Bauer - MVP Outlook
Manage and share your categories:
<http://www.vboffice.net/product.html?pub=6&lang=en>



Am Tue, 19 Jan 2010 21:14:01 -0800 schrieb Sindhura:

> Hi,
> I want to extract the calender data (i.e the data of all the shared
> calenders)
>
> I am creating an Add-in for Outlook in Vb.net . I need to read the

meetings
> between a given duration from a shared calendar. I will give the shared
> calendar names ( around 20) with time and i need to know which all

calendars
> and free and which all are busy at that specific time.
> I already tried to read the calendars in a loop and its taking a lot of

time
> to read each calendar.so i wanted to know if there is a faster way of

doing
> this.
>
> Can anyone let me know where does this data get stored and how to extract
> the same.
>
> I am using outlook 2003.
>
> ~ Sindhura

Reply to this post


Did you find this post helpful? Yes | No
  #3 (permalink)  
Old 20th January 2010, 02:28 PM
Sue Mosher [MVP]
Newsgroup Contributor


My Top Tip Count:

 
Posts: n/a
Chats:
Default Re: How to extract outlook calendar data.

------ Register to get rid of these "In Post" ads! ------


In addition to Michael's suggestion, you might want to look at
http://www.outlookcode.com/article.aspx?id=30 for an explanation of the
logic needed to search over a date range. Also, if you need only free/busy
availability information and not the details of appointments, you can use
the Recipient.FreeBusy method.
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Sindhura" <Sindhura@discussions.microsoft.com> wrote in message
news:83D21782-06E7-482B-9A72-A337A7561321@microsoft.com...
> Hi,
> I want to extract the calender data (i.e the data of all the shared
> calenders)
>
> I am creating an Add-in for Outlook in Vb.net . I need to read the
> meetings
> between a given duration from a shared calendar. I will give the shared
> calendar names ( around 20) with time and i need to know which all
> calendars
> and free and which all are busy at that specific time.
> I already tried to read the calendars in a loop and its taking a lot of
> time
> to read each calendar.so i wanted to know if there is a faster way of
> doing
> this.
>
> Can anyone let me know where does this data get stored and how to extract
> the same.
>
> I am using outlook 2003.
>
> ~ Sindhura



Reply to this post


Did you find this post helpful? Yes | No
The Code Cage Advertisment
Advertisement

To stop seeing these ads and get other benefits check This page!
  #4 (permalink)  
Old 20th January 2010, 09:03 PM
Dmitry Streblechenko
Newsgroup Contributor


My Top Tip Count:

 
Posts: n/a
Chats:
Default Re: How to extract outlook calendar data.

------ Register to get rid of these "In Post" ads! ------


You might also want to look into RDOFolder2.GetActivitiesForTimeRange
(http://www.dimastr.com/redemption/rd...htm#rdofolder2) and
RDOAddressEntry.FreeBusyList
(http://www.dimastr.com/redemption/rd...dressEntry.htm)

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Michael Bauer [MVP - Outlook]" <mb@mvps.org> wrote in message
news:1l3g8bnvhmas5$.1si7kl65ai1a9.dlg@40tude.net...
>
> With the Redemption library (www.dimastr.com) you can read the data very
> fast. There's a lot of help and code examples on the website. See the
> MapiTable object.
>
> --
> Best regards
> Michael Bauer - MVP Outlook
> Manage and share your categories:
> <http://www.vboffice.net/product.html?pub=6&lang=en>
>
>
>
> Am Tue, 19 Jan 2010 21:14:01 -0800 schrieb Sindhura:
>
>> Hi,
>> I want to extract the calender data (i.e the data of all the shared
>> calenders)
>>
>> I am creating an Add-in for Outlook in Vb.net . I need to read the

> meetings
>> between a given duration from a shared calendar. I will give the shared
>> calendar names ( around 20) with time and i need to know which all

> calendars
>> and free and which all are busy at that specific time.
>> I already tried to read the calendars in a loop and its taking a lot of

> time
>> to read each calendar.so i wanted to know if there is a faster way of

> doing
>> this.
>>
>> Can anyone let me know where does this data get stored and how to extract
>> the same.
>>
>> I am using outlook 2003.
>>
>> ~ Sindhura



Reply to this post


Did you find this post helpful? Yes | No

The Code Cage Advertisment
Advertisement

To stop seeing these ads and get other benefits check This page!
Reply

Bookmarks

Tags
calendar, data, extract, outlook


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

The Code Cage Affilliates


To stop seeing these ads and get other benefits check This page!



All times are GMT +1. The time now is 04:56 PM.


Powered by vBulletin® Version 3.8.5
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.3.2
No part of this board may be copied or reproduced either in part or full without the express permission of The Code Cage Team.
We are not associated with nor employed by Microsoft in any way, we simply provide resources!
All MS office icons are registered trademarks of the application the represent