A Microsoft Outlook email forum. Outlook Banter

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.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Retrieve meeting date and time



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old September 4th 08, 08:47 PM posted to microsoft.public.outlook.program_vba
henry
external usenet poster
 
Posts: 31
Default Retrieve meeting date and time

I use Access 2003 to link to Outlook Calendar. The fields I can read for
example are "Subject", "Sender Name", ... But I want to get the "Start time"
and "End time" so I can build a database to record the schedule for the
events on my group calendar. I don't want to create my own group forms as we
use the same MS calendar form for different groups. Is there any way I can
get to these information?

Your ideas are appreciated.

Thanks,
Henry

Ads
  #2  
Old September 5th 08, 05:45 AM posted to microsoft.public.outlook.program_vba
JP[_3_]
external usenet poster
 
Posts: 201
Default Retrieve meeting date and time

If you can already read calendar properties such as Subject and
Sender, check out StartDate and EndDate, I believe those are the
properties you need for the AppointmentItem object (or Start and End,
can't recall at the moment).

HTH,
JP

On Sep 4, 2:47*pm, Henry wrote:
I use Access 2003 to link to Outlook Calendar. The fields I can read for
example are "Subject", "Sender Name", ... But I want to get the "Start time"
and "End time" so I can build a database to record the schedule for the
events on my group calendar. I don't want to create my own group forms as we
use the same MS calendar form for different groups. Is there any way I can
get to these information?

Your ideas are appreciated.

Thanks,
Henry


  #3  
Old September 5th 08, 05:46 AM posted to microsoft.public.outlook.program_vba
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Retrieve meeting date and time

The linked table approach has major limitations, including the inability to
show even all the reasonably important fields. While articles have been
written on how to expand on this technique's obvious features, I've never
been able to duplicate the results. See
http://www.outlookcode.com/article.aspx?ID=25 .

That page will also give you other ideas on how to work with databases and
Outlook together. Most of the time, from the Access side, you'll need to
write code to do Outlook automation.

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook Programming: Jumpstart
for Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx

"Henry" wrote:

I use Access 2003 to link to Outlook Calendar. The fields I can read for
example are "Subject", "Sender Name", ... But I want to get the "Start time"
and "End time" so I can build a database to record the schedule for the
events on my group calendar. I don't want to create my own group forms as we
use the same MS calendar form for different groups. Is there any way I can
get to these information?


  #4  
Old September 5th 08, 05:37 PM posted to microsoft.public.outlook.program_vba
henry
external usenet poster
 
Posts: 31
Default Retrieve meeting date and time

Thanks Sue, JP. I checked the properties again and there are only "Received",
"Modified", and "Created". I guess I will try Sue's advise in my spare time.
If it works, I will post it and Sue has to knight me.

Thanks,
Henry Nguyen


"JP" wrote:

If you can already read calendar properties such as Subject and
Sender, check out StartDate and EndDate, I believe those are the
properties you need for the AppointmentItem object (or Start and End,
can't recall at the moment).

HTH,
JP

On Sep 4, 2:47 pm, Henry wrote:
I use Access 2003 to link to Outlook Calendar. The fields I can read for
example are "Subject", "Sender Name", ... But I want to get the "Start time"
and "End time" so I can build a database to record the schedule for the
events on my group calendar. I don't want to create my own group forms as we
use the same MS calendar form for different groups. Is there any way I can
get to these information?

Your ideas are appreciated.

Thanks,
Henry



  #5  
Old September 6th 08, 04:01 PM posted to microsoft.public.outlook.program_vba
JP[_3_]
external usenet poster
 
Posts: 201
Default Retrieve meeting date and time

I'm confused, I thought you are trying to read appointments in
Outlook? Here is a list of all the properties you can read, including
Start and End which represents the start date/time and end date/time
for a given appointment or meeting.

http://msdn.microsoft.com/en-us/libr...ffice.11).aspx

--JP

On Sep 5, 11:37*am, Henry wrote:
Thanks Sue, JP. I checked the properties again and there are only "Received",
"Modified", and "Created". I guess I will try Sue's advise in my spare time.
If it works, I will post it and Sue has to knight me.

Thanks,
Henry Nguyen

"JP" wrote:
If you can already read calendar properties such as Subject and
Sender, check out StartDate and EndDate, I believe those are the
properties you need for the AppointmentItem object (or Start and End,
can't recall at the moment).


HTH,
JP


  #6  
Old September 10th 08, 04:02 AM posted to microsoft.public.outlook.program_vba
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Retrieve meeting date and time

JP, Henry has apparently used a feature in Access that allows an Outlook
folder to appear as an Access table, through a special linking mechanism. In
such a table, only a subset of the Outlook fields are available. That's why
it's not very useful. Try it and see for yourself how frustrating it is.
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54




"JP" wrote:

I'm confused, I thought you are trying to read appointments in
Outlook? Here is a list of all the properties you can read, including
Start and End which represents the start date/time and end date/time
for a given appointment or meeting.

http://msdn.microsoft.com/en-us/libr...ffice.11).aspx

--JP

On Sep 5, 11:37 am, Henry wrote:
Thanks Sue, JP. I checked the properties again and there are only "Received",
"Modified", and "Created". I guess I will try Sue's advise in my spare time.
If it works, I will post it and Sue has to knight me.


  #7  
Old September 10th 08, 05:13 AM posted to microsoft.public.outlook.program_vba
JP[_3_]
external usenet poster
 
Posts: 201
Default Retrieve meeting date and time

Gotcha, there's a feature where you can create a "link table" to
external data. For example, an SQL database owned by another
department in your company, where they won't give you the raw data but
they'll let you run queries on it (I'm paraphrasing Helen Feddema
here). You can link to it and do some primitive stuff with the data
without actually housing it inside Access.

Thx,
JP


On Sep 9, 10:02 pm, Sue Mosher [MVP-Outlook]
wrote:
JP, Henry has apparently used a feature in Access that allows an Outlook
folder to appear as an Access table, through a special linking mechanism. In
such a table, only a subset of the Outlook fields are available. That's why
it's not very useful. Try it and see for yourself how frustrating it is.
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54

"JP" wrote:
I'm confused, I thought you are trying to read appointments in
Outlook? Here is a list of all the properties you can read, including
Start and End which represents the start date/time and end date/time
for a given appointment or meeting.


http://msdn.microsoft.com/en-us/libr...ffice.11).aspx


--JP


 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Retrieve Meeting Date and Time Henry Outlook - Calandaring 0 September 3rd 08 06:37 PM
Meeting Request Date and Time Issues Neteffect Outlook - Calandaring 3 June 13th 08 02:28 AM
Meeting start date/time changes to current date/time Dave H Outlook - Calandaring 0 February 14th 08 03:18 PM
Meeting time and date problem muhnihausen Outlook - Calandaring 1 May 31st 07 07:17 AM
Print Meeting w/Date & Time jdgstat Outlook - Calandaring 0 March 23rd 06 08:22 PM


All times are GMT +1. The time now is 08:31 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.