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

Custom Meeting Request Form



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old February 2nd 06, 09:47 PM posted to microsoft.public.outlook.program_forms
ML
external usenet poster
 
Posts: 30
Default Custom Meeting Request Form

I created a custom Meeting Request Form with VBScript to schedule company's
resources, the only issue that I don't know the solution is how to change the
overbooking conflict. Our facility people would like to have at least 30 min
window to set up rooms as users schedule them as resources in Outlook. How I
can retrieve Free/Busy time for the specific resource?
We currently use Outlook 2000 with Exchange 2003.

Thank you,
Marina.
Ads
  #2  
Old February 2nd 06, 10:00 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Custom Meeting Request Form

Take a look at the AddressEntry.GetFreeBusy method. It returns a string of numbers that correspond to the free/busy state for each interval.

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


"ML" wrote in message ...
I created a custom Meeting Request Form with VBScript to schedule company's
resources, the only issue that I don't know the solution is how to change the
overbooking conflict. Our facility people would like to have at least 30 min
window to set up rooms as users schedule them as resources in Outlook. How I
can retrieve Free/Busy time for the specific resource?
We currently use Outlook 2000 with Exchange 2003.

Thank you,
Marina.

  #3  
Old February 10th 06, 05:04 PM posted to microsoft.public.outlook.program_forms
ML
external usenet poster
 
Posts: 30
Default Custom Meeting Request Form

Thank you Sue. I looked in your book and decided against the idea of
accessing address_related properties since it would be too confusing for the
end-user to see that MS Security prompt and I don't want to supress it even
if the virus risk is minimum.
But I have another question related to the same project:
based on the custom Meeting Request Form and selected Resources E-mail has
to be sent to our Facility guy to arrange the meeting room. I cannot use his
mailbox as the delegate as we supressed all Resources mailboxes from
receiving Emails.
I know how to send Email from the custom form, but could not figure it out
on which event it shoul be based. Using Send event will send Email even if
the Resource is overbooked, using Close event will send extra Email everytime
when the user opens that meeting request. What should I do?

Thank you.

"Sue Mosher [MVP-Outlook]" wrote:

Take a look at the AddressEntry.GetFreeBusy method. It returns a string of numbers that correspond to the free/busy state for each interval.

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


"ML" wrote in message ...
I created a custom Meeting Request Form with VBScript to schedule company's
resources, the only issue that I don't know the solution is how to change the
overbooking conflict. Our facility people would like to have at least 30 min
window to set up rooms as users schedule them as resources in Outlook. How I
can retrieve Free/Busy time for the specific resource?
We currently use Outlook 2000 with Exchange 2003.

Thank you,
Marina.


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

What about the Write event? That fires when the user saves the item.

Or put a button on a custom form page?

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


"ML" wrote in message news
Thank you Sue. I looked in your book and decided against the idea of
accessing address_related properties since it would be too confusing for the
end-user to see that MS Security prompt and I don't want to supress it even
if the virus risk is minimum.
But I have another question related to the same project:
based on the custom Meeting Request Form and selected Resources E-mail has
to be sent to our Facility guy to arrange the meeting room. I cannot use his
mailbox as the delegate as we supressed all Resources mailboxes from
receiving Emails.
I know how to send Email from the custom form, but could not figure it out
on which event it shoul be based. Using Send event will send Email even if
the Resource is overbooked, using Close event will send extra Email everytime
when the user opens that meeting request. What should I do?

Thank you.

"Sue Mosher [MVP-Outlook]" wrote:

Take a look at the AddressEntry.GetFreeBusy method. It returns a string of numbers that correspond to the free/busy state for each interval.

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


"ML" wrote in message ...
I created a custom Meeting Request Form with VBScript to schedule company's
resources, the only issue that I don't know the solution is how to change the
overbooking conflict. Our facility people would like to have at least 30 min
window to set up rooms as users schedule them as resources in Outlook. How I
can retrieve Free/Busy time for the specific resource?
We currently use Outlook 2000 with Exchange 2003.

Thank you,
Marina.


  #5  
Old February 15th 06, 04:00 PM posted to microsoft.public.outlook.program_forms
ML
external usenet poster
 
Posts: 30
Default Custom Meeting Request Form

I tried Write event, but for some reason it fires twice, and as a result the
form sends two Emails.

"Sue Mosher [MVP-Outlook]" wrote:

What about the Write event? That fires when the user saves the item.

Or put a button on a custom form page?

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


"ML" wrote in message news
Thank you Sue. I looked in your book and decided against the idea of
accessing address_related properties since it would be too confusing for the
end-user to see that MS Security prompt and I don't want to supress it even
if the virus risk is minimum.
But I have another question related to the same project:
based on the custom Meeting Request Form and selected Resources E-mail has
to be sent to our Facility guy to arrange the meeting room. I cannot use his
mailbox as the delegate as we supressed all Resources mailboxes from
receiving Emails.
I know how to send Email from the custom form, but could not figure it out
on which event it shoul be based. Using Send event will send Email even if
the Resource is overbooked, using Close event will send extra Email everytime
when the user opens that meeting request. What should I do?

Thank you.

"Sue Mosher [MVP-Outlook]" wrote:

Take a look at the AddressEntry.GetFreeBusy method. It returns a string of numbers that correspond to the free/busy state for each interval.

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


"ML" wrote in message ...
I created a custom Meeting Request Form with VBScript to schedule company's
resources, the only issue that I don't know the solution is how to change the
overbooking conflict. Our facility people would like to have at least 30 min
window to set up rooms as users schedule them as resources in Outlook. How I
can retrieve Free/Busy time for the specific resource?
We currently use Outlook 2000 with Exchange 2003.

Thank you,
Marina.


  #6  
Old February 15th 06, 04:23 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Custom Meeting Request Form

Do you have code elsewhere in the form that calls Item.Save? That potentially would result in multiple calls to Write.

You could also use a custom property to track whether the message has been sent, so that you won't send it twice.

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


"ML" wrote in message ...
I tried Write event, but for some reason it fires twice, and as a result the
form sends two Emails.

"Sue Mosher [MVP-Outlook]" wrote:

What about the Write event? That fires when the user saves the item.

Or put a button on a custom form page?



"ML" wrote in message news
Thank you Sue. I looked in your book and decided against the idea of
accessing address_related properties since it would be too confusing for the
end-user to see that MS Security prompt and I don't want to supress it even
if the virus risk is minimum.
But I have another question related to the same project:
based on the custom Meeting Request Form and selected Resources E-mail has
to be sent to our Facility guy to arrange the meeting room. I cannot use his
mailbox as the delegate as we supressed all Resources mailboxes from
receiving Emails.
I know how to send Email from the custom form, but could not figure it out
on which event it shoul be based. Using Send event will send Email even if
the Resource is overbooked, using Close event will send extra Email everytime
when the user opens that meeting request. What should I do?

Thank you.

"Sue Mosher [MVP-Outlook]" wrote:

Take a look at the AddressEntry.GetFreeBusy method. It returns a string of numbers that correspond to the free/busy state for each interval.



"ML" wrote in message ...
I created a custom Meeting Request Form with VBScript to schedule company's
resources, the only issue that I don't know the solution is how to change the
overbooking conflict. Our facility people would like to have at least 30 min
window to set up rooms as users schedule them as resources in Outlook. How I
can retrieve Free/Busy time for the specific resource?
We currently use Outlook 2000 with Exchange 2003.

Thank you,
Marina.


 




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
custom form Charlie Outlook - Using Contacts 5 March 8th 06 04:24 PM
Custom form Melbin Outlook - Using Forms 1 January 24th 06 12:17 PM
I send an Outlook custom form, but a std. form displays? Sue Mosher [MVP-Outlook] Outlook - Using Forms 0 January 20th 06 07:41 PM
Cannot programmatically open custom message in custom form ms Outlook - Using Forms 1 January 20th 06 03:01 PM
Meeting request comes back undeliverable yet request is still rece Sal F Outlook - Calandaring 0 January 9th 06 05:32 PM


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