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 - Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Customized Meeting request Form



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old September 13th 07, 02:31 PM posted to microsoft.public.outlook.program_forms
Vidya[_2_]
external usenet poster
 
Posts: 17
Default Customized Meeting request Form

Hello,

I have created a customized Meeting Request Form which has an additional
Page displayed ( say P.2 page is displayed).

Doubt 1 : I donot want to display this page (P.2) for the Recipients to
whom the Form is sent
i.e., The page (P.2) has to be visible only to the
person who books the meeting.

Doubt 2 : In the Edit mode of this meeting request by the person who
booked the meeting, this new page (P.2) should be visible .

Doubt 3 : How are the "All Mail Fields", "All Appointment fields" etc of
the Meeting Request From extracted in the code behind programatically i.e.,
VB Script?

Thank You,

Regards,
Vidya


Ads
  #2  
Old September 13th 07, 04:18 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Customized Meeting request Form

1-2) You can publish the form with the (P.2) page hidden and put code in the Item_Open event handler to show it only for new items and check whether the organizer is the current user:

Function Item_Open()
If Item.Size = 0 Then
Item.GetInspector.ShowFormPage ("P.2")
ElseIf Item.Organizer = Application.Session.CurrentUser.Name Then
Item.GetInspector.ShowFormPage ("P.2")
End If
End Function

3) Through the UserProperties collection. See http://www.outlookcode.com/article.aspx?ID=38
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Vidya" wrote in message ...
Hello,

I have created a customized Meeting Request Form which has an additional
Page displayed ( say P.2 page is displayed).

Doubt 1 : I donot want to display this page (P.2) for the Recipients to
whom the Form is sent
i.e., The page (P.2) has to be visible only to the
person who books the meeting.

Doubt 2 : In the Edit mode of this meeting request by the person who
booked the meeting, this new page (P.2) should be visible .

Doubt 3 : How are the "All Mail Fields", "All Appointment fields" etc of
the Meeting Request From extracted in the code behind programatically i.e.,
VB Script?

Thank You,

Regards,
Vidya


  #3  
Old September 17th 07, 09:42 AM posted to microsoft.public.outlook.program_forms
Vidya[_2_]
external usenet poster
 
Posts: 17
Default Customized Meeting request Form

Thank You,

I have another query .

1) In the New Customized Meeting Request Form that will be opened from the
Calendar of the mailboxes, is it possible to extract/read the details about
the mailbox from which the request was raised (i.e., the Mailbox /
Calendar name )


"Sue Mosher [MVP-Outlook]" wrote in message
...
1-2) You can publish the form with the (P.2) page hidden and put code in the
Item_Open event handler to show it only for new items and check whether the
organizer is the current user:

Function Item_Open()
If Item.Size = 0 Then
Item.GetInspector.ShowFormPage ("P.2")
ElseIf Item.Organizer = Application.Session.CurrentUser.Name Then
Item.GetInspector.ShowFormPage ("P.2")
End If
End Function

3) Through the UserProperties collection. See
http://www.outlookcode.com/article.aspx?ID=38
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Vidya" wrote in message
...
Hello,

I have created a customized Meeting Request Form which has an

additional
Page displayed ( say P.2 page is displayed).

Doubt 1 : I donot want to display this page (P.2) for the Recipients to
whom the Form is sent
i.e., The page (P.2) has to be visible only to the
person who books the meeting.

Doubt 2 : In the Edit mode of this meeting request by the person who
booked the meeting, this new page (P.2) should be visible .

Doubt 3 : How are the "All Mail Fields", "All Appointment fields" etc

of
the Meeting Request From extracted in the code behind programatically

i.e.,
VB Script?

Thank You,

Regards,
Vidya




  #4  
Old September 17th 07, 06:13 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Customized Meeting request Form

If the calendar is opened with the File | Open | Other User's Folder command, I don't think so.

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Vidya" wrote in message ...
Thank You,

I have another query .

1) In the New Customized Meeting Request Form that will be opened from the
Calendar of the mailboxes, is it possible to extract/read the details about
the mailbox from which the request was raised (i.e., the Mailbox /
Calendar name )


"Sue Mosher [MVP-Outlook]" wrote in message
...
1-2) You can publish the form with the (P.2) page hidden and put code in the
Item_Open event handler to show it only for new items and check whether the
organizer is the current user:

Function Item_Open()
If Item.Size = 0 Then
Item.GetInspector.ShowFormPage ("P.2")
ElseIf Item.Organizer = Application.Session.CurrentUser.Name Then
Item.GetInspector.ShowFormPage ("P.2")
End If
End Function

3) Through the UserProperties collection. See
http://www.outlookcode.com/article.aspx?ID=38
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Vidya" wrote in message
...
Hello,

I have created a customized Meeting Request Form which has an

additional
Page displayed ( say P.2 page is displayed).

Doubt 1 : I donot want to display this page (P.2) for the Recipients to
whom the Form is sent
i.e., The page (P.2) has to be visible only to the
person who books the meeting.

Doubt 2 : In the Edit mode of this meeting request by the person who
booked the meeting, this new page (P.2) should be visible .

Doubt 3 : How are the "All Mail Fields", "All Appointment fields" etc

of
the Meeting Request From extracted in the code behind programatically

i.e.,
VB Script?

Thank You,

Regards,
Vidya




  #5  
Old September 18th 07, 06:53 AM posted to microsoft.public.outlook.program_forms
Vidya[_2_]
external usenet poster
 
Posts: 17
Default Customized Meeting request Form

If we "open a shared calendar" and if a person has "Owner" permission on
this calendar, can this person retrieve the Calendars name from the
customized meeting request form?

"Sue Mosher [MVP-Outlook]" wrote in message
...
If the calendar is opened with the File | Open | Other User's Folder
command, I don't think so.

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Vidya" wrote in message
...
Thank You,

I have another query .

1) In the New Customized Meeting Request Form that will be opened from the
Calendar of the mailboxes, is it possible to extract/read the details

about
the mailbox from which the request was raised (i.e., the Mailbox /
Calendar name )


"Sue Mosher [MVP-Outlook]" wrote in message
...
1-2) You can publish the form with the (P.2) page hidden and put code in

the
Item_Open event handler to show it only for new items and check whether

the
organizer is the current user:

Function Item_Open()
If Item.Size = 0 Then
Item.GetInspector.ShowFormPage ("P.2")
ElseIf Item.Organizer = Application.Session.CurrentUser.Name Then
Item.GetInspector.ShowFormPage ("P.2")
End If
End Function

3) Through the UserProperties collection. See
http://www.outlookcode.com/article.aspx?ID=38
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Vidya" wrote in message
...
Hello,

I have created a customized Meeting Request Form which has an

additional
Page displayed ( say P.2 page is displayed).

Doubt 1 : I donot want to display this page (P.2) for the Recipients

to
whom the Form is sent
i.e., The page (P.2) has to be visible only to the
person who books the meeting.

Doubt 2 : In the Edit mode of this meeting request by the person who
booked the meeting, this new page (P.2) should be visible .

Doubt 3 : How are the "All Mail Fields", "All Appointment fields" etc

of
the Meeting Request From extracted in the code behind programatically

i.e.,
VB Script?

Thank You,

Regards,
Vidya






  #6  
Old September 18th 07, 02:53 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Customized Meeting request Form

As I indicated, I haven't found any way to do that.

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Vidya" wrote in message ...
If we "open a shared calendar" and if a person has "Owner" permission on
this calendar, can this person retrieve the Calendars name from the
customized meeting request form?

"Sue Mosher [MVP-Outlook]" wrote in message
...
If the calendar is opened with the File | Open | Other User's Folder
command, I don't think so.

"Vidya" wrote in message
...
Thank You,

I have another query .

1) In the New Customized Meeting Request Form that will be opened from the
Calendar of the mailboxes, is it possible to extract/read the details

about
the mailbox from which the request was raised (i.e., the Mailbox /
Calendar name )


"Sue Mosher [MVP-Outlook]" wrote in message
...
1-2) You can publish the form with the (P.2) page hidden and put code in

the
Item_Open event handler to show it only for new items and check whether

the
organizer is the current user:

Function Item_Open()
If Item.Size = 0 Then
Item.GetInspector.ShowFormPage ("P.2")
ElseIf Item.Organizer = Application.Session.CurrentUser.Name Then
Item.GetInspector.ShowFormPage ("P.2")
End If
End Function

3) Through the UserProperties collection. See
http://www.outlookcode.com/article.aspx?ID=38
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Vidya" wrote in message
...
Hello,

I have created a customized Meeting Request Form which has an

additional
Page displayed ( say P.2 page is displayed).

Doubt 1 : I donot want to display this page (P.2) for the Recipients

to
whom the Form is sent
i.e., The page (P.2) has to be visible only to the
person who books the meeting.

Doubt 2 : In the Edit mode of this meeting request by the person who
booked the meeting, this new page (P.2) should be visible .

Doubt 3 : How are the "All Mail Fields", "All Appointment fields" etc

of
the Meeting Request From extracted in the code behind programatically

i.e.,
VB Script?

Thank You,

Regards,
Vidya






 




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
Planning a complex meeting request form and wishing some advice Duane Nutley Outlook - Using Forms 3 September 7th 07 05:04 AM
Meeting request form Bill Outlook - Using Forms 0 March 22nd 06 06:46 PM
Custom Meeting Request Form ML Outlook - Using Forms 5 February 15th 06 04:23 PM
Open meeting request using standard form GR Outlook - Using Forms 1 February 13th 06 08:49 PM
Another question about custom Meeting Request form ML Outlook - Using Forms 0 February 11th 06 04:17 PM


All times are GMT +1. The time now is 05:15 AM.


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.