![]() |
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. |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
![]()
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. |
#2
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
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 |