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

Tracking meeting request responses in Outlook



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old January 7th 10, 03:28 PM posted to microsoft.public.outlook.general,microsoft.public.outlook.program_vba,microsoft.public.access
Dale Fye
external usenet poster
 
Posts: 34
Default Tracking meeting request responses in Outlook

I have cross posted this to the Access-General, Outlook-General, and
Outlook-programming-vba news groups to expand my pool of expertise.

I have a co-worker that wants to be able to print out the list of invitees
and threir responses to a meeting request (what is visible when you select
the "Show - Tracking" ribbon option in 2007. We cannot figure out a way to
print or even copy this info. He has more than two pages of invitees, and
would prefer not to do a screen print.

Any ideas?

Is this information visibile from within VBA? I linked my calendar to an
Access database, but did not see a field in the calendar table that seemed to
handle meeting attendees.

----
HTH
Dale

Ads
  #2  
Old January 7th 10, 04:09 PM posted to microsoft.public.outlook.general,microsoft.public.outlook.program_vba,microsoft.public.access
David C. Holley
external usenet poster
 
Posts: 3
Default Tracking meeting request responses in Outlook

Regardless of the fact that you're trying to do this within Access, this is
an Outlook Automation question and thus appropriate for the Outlook
newgroups. Automation is simply code within one application that reaches out
to work with another. Its irrelevant if you're using Access, Word, Excel or
Power Point, its all Outlook.

To that end.

Are you storing information in the Access database on the meeting? Where
does Access come into play with the Meeting Request? Are you creating the
Meeting Request in Access to begin with?

Yes it is entirely possible, but you're trying to do this from within Access
you have to locate the MeetingItem first. How you do that depends on how the
Meeting Request is being created to begin with as there are ways to do this
that are easier than others.


"Dale Fye" wrote in message
...
I have cross posted this to the Access-General, Outlook-General, and
Outlook-programming-vba news groups to expand my pool of expertise.

I have a co-worker that wants to be able to print out the list of invitees
and threir responses to a meeting request (what is visible when you select
the "Show - Tracking" ribbon option in 2007. We cannot figure out a way
to
print or even copy this info. He has more than two pages of invitees, and
would prefer not to do a screen print.

Any ideas?

Is this information visibile from within VBA? I linked my calendar to an
Access database, but did not see a field in the calendar table that seemed
to
handle meeting attendees.

----
HTH
Dale



  #3  
Old January 7th 10, 04:09 PM posted to microsoft.public.outlook.general,microsoft.public.outlook.program_vba,microsoft.public.access
Sue Mosher [MVP][_4_]
external usenet poster
 
Posts: 552
Default Tracking meeting request responses in Outlook

It's stored in the Appointment.Recipients collection; see
http://www.outlookcode.com/codedetail.aspx?id=1130 and
http://www.outlookcode.com/codedetail.aspx?id=1418 for Outlook VBA code
samples.
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Dale Fye" wrote in message
...
I have cross posted this to the Access-General, Outlook-General, and
Outlook-programming-vba news groups to expand my pool of expertise.

I have a co-worker that wants to be able to print out the list of invitees
and threir responses to a meeting request (what is visible when you select
the "Show - Tracking" ribbon option in 2007. We cannot figure out a way
to
print or even copy this info. He has more than two pages of invitees, and
would prefer not to do a screen print.

Any ideas?

Is this information visibile from within VBA? I linked my calendar to an
Access database, but did not see a field in the calendar table that seemed
to
handle meeting attendees.



  #4  
Old January 7th 10, 06:30 PM posted to microsoft.public.outlook.general,microsoft.public.outlook.program_vba,microsoft.public.access
Dale Fye
external usenet poster
 
Posts: 34
Default Tracking meeting request responses in Outlook

Actually, Dave, I would prefer to do it in Outlook. But when I couldn't
figure out how to get a simple printout of the meeting request recipients and
their response, I went to Access (my area of expertise) to see whether I
could find a field in either the calendar or mail item collection that had
that information, but did not find one. Thats when I posted my note.

----
HTH
Dale



"David C. Holley" wrote:

Regardless of the fact that you're trying to do this within Access, this is
an Outlook Automation question and thus appropriate for the Outlook
newgroups. Automation is simply code within one application that reaches out
to work with another. Its irrelevant if you're using Access, Word, Excel or
Power Point, its all Outlook.

To that end.

Are you storing information in the Access database on the meeting? Where
does Access come into play with the Meeting Request? Are you creating the
Meeting Request in Access to begin with?

Yes it is entirely possible, but you're trying to do this from within Access
you have to locate the MeetingItem first. How you do that depends on how the
Meeting Request is being created to begin with as there are ways to do this
that are easier than others.


"Dale Fye" wrote in message
...
I have cross posted this to the Access-General, Outlook-General, and
Outlook-programming-vba news groups to expand my pool of expertise.

I have a co-worker that wants to be able to print out the list of invitees
and threir responses to a meeting request (what is visible when you select
the "Show - Tracking" ribbon option in 2007. We cannot figure out a way
to
print or even copy this info. He has more than two pages of invitees, and
would prefer not to do a screen print.

Any ideas?

Is this information visibile from within VBA? I linked my calendar to an
Access database, but did not see a field in the calendar table that seemed
to
handle meeting attendees.

----
HTH
Dale



.

  #5  
Old January 7th 10, 06:34 PM posted to microsoft.public.outlook.general,microsoft.public.outlook.program_vba,microsoft.public.access
Dale Fye
external usenet poster
 
Posts: 34
Default Tracking meeting request responses in Outlook

Sue,

How do I make the VBA window visible in Outlook?

----
HTH
Dale



"Sue Mosher [MVP]" wrote:

It's stored in the Appointment.Recipients collection; see
http://www.outlookcode.com/codedetail.aspx?id=1130 and
http://www.outlookcode.com/codedetail.aspx?id=1418 for Outlook VBA code
samples.
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Dale Fye" wrote in message
...
I have cross posted this to the Access-General, Outlook-General, and
Outlook-programming-vba news groups to expand my pool of expertise.

I have a co-worker that wants to be able to print out the list of invitees
and threir responses to a meeting request (what is visible when you select
the "Show - Tracking" ribbon option in 2007. We cannot figure out a way
to
print or even copy this info. He has more than two pages of invitees, and
would prefer not to do a screen print.

Any ideas?

Is this information visibile from within VBA? I linked my calendar to an
Access database, but did not see a field in the calendar table that seemed
to
handle meeting attendees.



.

  #6  
Old January 7th 10, 06:48 PM posted to microsoft.public.outlook.general,microsoft.public.outlook.program_vba,microsoft.public.access
Sue Mosher [MVP][_4_]
external usenet poster
 
Posts: 552
Default Tracking meeting request responses in Outlook

Same way as in any other Office application: From the main menu, Alt+F11 or
Tools | Macro | Visual Basic Editor
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Dale Fye" wrote in message
...
Sue,

How do I make the VBA window visible in Outlook?

----
HTH
Dale



"Sue Mosher [MVP]" wrote:

It's stored in the Appointment.Recipients collection; see
http://www.outlookcode.com/codedetail.aspx?id=1130 and
http://www.outlookcode.com/codedetail.aspx?id=1418 for Outlook VBA code
samples.



"Dale Fye" wrote in message
...
I have cross posted this to the Access-General, Outlook-General, and
Outlook-programming-vba news groups to expand my pool of expertise.

I have a co-worker that wants to be able to print out the list of
invitees
and threir responses to a meeting request (what is visible when you
select
the "Show - Tracking" ribbon option in 2007. We cannot figure out a
way
to
print or even copy this info. He has more than two pages of invitees,
and
would prefer not to do a screen print.

Any ideas?

Is this information visibile from within VBA? I linked my calendar to
an
Access database, but did not see a field in the calendar table that
seemed
to
handle meeting attendees.



  #7  
Old January 7th 10, 07:00 PM posted to microsoft.public.outlook.general,microsoft.public.outlook.program_vba,microsoft.public.access
David C. Holley
external usenet poster
 
Posts: 3
Default Tracking meeting request responses in Outlook

What happens when you open the Meeting Item and click print? I seem to
recall that they meeting attendee status used to appear there.

David (hint)

"Dale Fye" wrote in message
...
Actually, Dave, I would prefer to do it in Outlook. But when I couldn't
figure out how to get a simple printout of the meeting request recipients
and
their response, I went to Access (my area of expertise) to see whether I
could find a field in either the calendar or mail item collection that had
that information, but did not find one. Thats when I posted my note.

----
HTH
Dale



"David C. Holley" wrote:

Regardless of the fact that you're trying to do this within Access, this
is
an Outlook Automation question and thus appropriate for the Outlook
newgroups. Automation is simply code within one application that reaches
out
to work with another. Its irrelevant if you're using Access, Word, Excel
or
Power Point, its all Outlook.

To that end.

Are you storing information in the Access database on the meeting? Where
does Access come into play with the Meeting Request? Are you creating the
Meeting Request in Access to begin with?

Yes it is entirely possible, but you're trying to do this from within
Access
you have to locate the MeetingItem first. How you do that depends on how
the
Meeting Request is being created to begin with as there are ways to do
this
that are easier than others.


"Dale Fye" wrote in message
...
I have cross posted this to the Access-General, Outlook-General, and
Outlook-programming-vba news groups to expand my pool of expertise.

I have a co-worker that wants to be able to print out the list of
invitees
and threir responses to a meeting request (what is visible when you
select
the "Show - Tracking" ribbon option in 2007. We cannot figure out a
way
to
print or even copy this info. He has more than two pages of invitees,
and
would prefer not to do a screen print.

Any ideas?

Is this information visibile from within VBA? I linked my calendar to
an
Access database, but did not see a field in the calendar table that
seemed
to
handle meeting attendees.

----
HTH
Dale



.



  #8  
Old January 7th 10, 07:10 PM posted to microsoft.public.outlook.general,microsoft.public.outlook.program_vba,microsoft.public.access
Dale Fye
external usenet poster
 
Posts: 34
Default Tracking meeting request responses in Outlook

figured out how to get to the VBA editor but now:

I copied the code into a code module in Outlook 2007, and am getting an
error (287 Application-defined or object defined error) on the line:

Set objAttendees = objItem.Recipients

When I print objItem in the debug window, it gives me the subject of the
meeting.

objSelection.Class = 74

Any ideas?

I've got a meeting request that I created up on screen.

Dale


--
----
HTH
Dale



"Sue Mosher [MVP]" wrote:

It's stored in the Appointment.Recipients collection; see
http://www.outlookcode.com/codedetail.aspx?id=1130 and
http://www.outlookcode.com/codedetail.aspx?id=1418 for Outlook VBA code
samples.
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Dale Fye" wrote in message
...
I have cross posted this to the Access-General, Outlook-General, and
Outlook-programming-vba news groups to expand my pool of expertise.

I have a co-worker that wants to be able to print out the list of invitees
and threir responses to a meeting request (what is visible when you select
the "Show - Tracking" ribbon option in 2007. We cannot figure out a way
to
print or even copy this info. He has more than two pages of invitees, and
would prefer not to do a screen print.

Any ideas?

Is this information visibile from within VBA? I linked my calendar to an
Access database, but did not see a field in the calendar table that seemed
to
handle meeting attendees.



.

  #9  
Old January 7th 10, 07:46 PM posted to microsoft.public.outlook.general,microsoft.public.outlook.program_vba,microsoft.public.access
Sue Mosher [MVP][_4_]
external usenet poster
 
Posts: 552
Default Tracking meeting request responses in Outlook

Which code sample are you using? What is the statement that instantiates
objItem? What's the value of objItem.Class?
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Dale Fye" wrote in message
...
figured out how to get to the VBA editor but now:

I copied the code into a code module in Outlook 2007, and am getting an
error (287 Application-defined or object defined error) on the line:

Set objAttendees = objItem.Recipients

When I print objItem in the debug window, it gives me the subject of the
meeting.

I've got a meeting request that I created up on screen.

"Sue Mosher [MVP]" wrote:

It's stored in the Appointment.Recipients collection; see
http://www.outlookcode.com/codedetail.aspx?id=1130 and
http://www.outlookcode.com/codedetail.aspx?id=1418 for Outlook VBA code
samples.

"Dale Fye" wrote in message
...
I have cross posted this to the Access-General, Outlook-General, and
Outlook-programming-vba news groups to expand my pool of expertise.

I have a co-worker that wants to be able to print out the list of
invitees
and threir responses to a meeting request (what is visible when you
select
the "Show - Tracking" ribbon option in 2007. We cannot figure out a
way
to
print or even copy this info. He has more than two pages of invitees,
and
would prefer not to do a screen print.

Any ideas?

Is this information visibile from within VBA? I linked my calendar to
an
Access database, but did not see a field in the calendar table that
seemed
to
handle meeting attendees.



.



  #10  
Old January 7th 10, 07:54 PM posted to microsoft.public.outlook.general,microsoft.public.outlook.program_vba,microsoft.public.access
Dale Fye
external usenet poster
 
Posts: 34
Default Tracking meeting request responses in Outlook

It just prints the basic information (addressees, subject, dates/times, body
of the message.

Besides, he needs to get this into some form of Word or PPT document, so
being able to print it does not help!

----
HTH
Dale



"David C. Holley" wrote:

What happens when you open the Meeting Item and click print? I seem to
recall that they meeting attendee status used to appear there.

David (hint)

"Dale Fye" wrote in message
...
Actually, Dave, I would prefer to do it in Outlook. But when I couldn't
figure out how to get a simple printout of the meeting request recipients
and
their response, I went to Access (my area of expertise) to see whether I
could find a field in either the calendar or mail item collection that had
that information, but did not find one. Thats when I posted my note.

----
HTH
Dale



"David C. Holley" wrote:

Regardless of the fact that you're trying to do this within Access, this
is
an Outlook Automation question and thus appropriate for the Outlook
newgroups. Automation is simply code within one application that reaches
out
to work with another. Its irrelevant if you're using Access, Word, Excel
or
Power Point, its all Outlook.

To that end.

Are you storing information in the Access database on the meeting? Where
does Access come into play with the Meeting Request? Are you creating the
Meeting Request in Access to begin with?

Yes it is entirely possible, but you're trying to do this from within
Access
you have to locate the MeetingItem first. How you do that depends on how
the
Meeting Request is being created to begin with as there are ways to do
this
that are easier than others.


"Dale Fye" wrote in message
...
I have cross posted this to the Access-General, Outlook-General, and
Outlook-programming-vba news groups to expand my pool of expertise.

I have a co-worker that wants to be able to print out the list of
invitees
and threir responses to a meeting request (what is visible when you
select
the "Show - Tracking" ribbon option in 2007. We cannot figure out a
way
to
print or even copy this info. He has more than two pages of invitees,
and
would prefer not to do a screen print.

Any ideas?

Is this information visibile from within VBA? I linked my calendar to
an
Access database, but did not see a field in the calendar table that
seemed
to
handle meeting attendees.

----
HTH
Dale



.



.

 




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
Meeting Responses Not Tracking Eric Outlook - Calandaring 13 March 22nd 10 12:58 PM
outlook 2007 - meeting request - tracking responses Nadine Outlook - Calandaring 1 June 24th 09 01:21 AM
How can I print tracking responses from an outlook meeting? Mike Outlook - Calandaring 1 August 2nd 07 10:38 PM
Copy responses from the tracking tab in a meeting request Cecilia L. Joyner Outlook - Calandaring 0 April 28th 06 03:55 PM
Responses to a meeting request are not tracking 2ndN@ture Outlook - Calandaring 0 January 9th 06 08:40 PM


All times are GMT +1. The time now is 03:49 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.