Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MS Outlook Calendar booking system

Status
Not open for further replies.

Fitzy123

Technical User
Nov 14, 2002
3
AU
We have set up a room booking system using calendars in the public folder. This all works fine except it allows people to double book which I don't wont. Is there a way to set up a calendar so you can only have one entry for a particular time.

Any help for be greatly appreciated

Regards,
Glenn
 
Glenn,
Please explain how you did this. My feeling would be that you would probably need to write some VBA code to detect when something in the calendar changed and then check to see if there is a double booking. The problem is that in native Outlook, the only events are:
Code:
Private Sub Application_AdvancedSearchComplete(ByVal SearchObject As Search)
Private Sub Application_AdvancedSearchStopped(ByVal SearchObject As Search)
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Private Sub Application_MAPILogonComplete()
Private Sub Application_OptionsPagesAdd(ByVal Pages As Private Sub Application_Reminder(ByVal Item As Object)
Private Sub Application_Startup()
nothing about calendar. So HOW you set this up is imnportant. You may have to end up writing an interface to control the entire interaction. Skip,
Skip@theofficeexperts.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top