Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

How to use Microsoft Collaboration Data Objects for Exchange 2000 Library to create appointments with exceptions in Microsoft Visual C# .NET


View products that this article applies to.

This article was previously published under Q310555
Caution ADO and ADO MD have not been fully tested in a Microsoft .NET Framework environment. They may cause intermittent issues, especially in service-based applications or in multithreaded applications. The techniques that are discussed in this article should only be used as a temporary measure during migration to ADO.NET. You should only use these techniques after you have conducted complete testing to make sure that there are no compatibility issues. Any issues that are caused by using ADO or ADO MD in this manner are unsupported. For more information, see the following article in the Microsoft Knowledge Base:
840667 (http://support.microsoft.com/kb/840667/ ) You receive unexpected errors when using ADO and ADO MD in a .NET Framework application

↑ Back to the top


Summary

This article describes how to use Microsoft Collaboration Data Objects (CDO) for Exchange 2000 Library to create appointments with exceptions in Microsoft Visual C# .NET.

Note To function correctly, you must run the code discussed in this article on Microsoft Exchange Server.

↑ Back to the top


More information

  1. Start Microsoft Visual Studio .NET. On the File menu, click New, and then click Project.
  2. Select Console Application from the Visual C# .NET Projects types.

    By default, Class1.cs is created.
  3. Add a reference to the Microsoft CDO for Exchange 2000 Library. To do this, follow these steps:
    1. On the Project menu, click Add Reference.
    2. On the COM tab, locate Microsoft CDO for Exchange 2000 Library, and then click Select.
    3. Click OK in the Add References dialog box to accept your selections. If you receive a prompt to generate wrappers for the libraries you selected, click Yes.
  4. Follow the same steps to add a reference to the Microsoft ActiveX Data Objects 2.5 Library.
  5. In the Code window, replace all the code with the following code:
    using System;
    
    namespace Samples
    {
    	class Class1
    	{
    		static void Main(string[] args)
    		{
    			try 
    			{
    			CDO.Appointment oApp = new CDO.Appointment();
    
                            // TODO: Replace with your folder URL
    			string sURL = "http://ExchServer/Exchange/UserAlias/calendar";
    
    			ADODB.Connection oCn = new ADODB.Connection();
    			oCn.Provider = "exoledb.datasource";
    
    			oCn.Open(sURL, "", "", 0);  
    			if(oCn.State == 1)
    			{
    				Console.WriteLine("Good Connection");
    			}
    			else
    			{
    				Console.WriteLine("Bad Connection");
    			}			
    						
    			CDO.Configuration iConfg = new CDO.Configuration();
    			ADODB.Fields oFields;
    
    
    			oFields = iConfg.Fields;
    			oFields[CDO.CdoCalendar.cdoTimeZoneIDURN].Value = CDO.CdoTimeZoneId.cdoPacific;
    			oFields.Update();
    
    			oApp.Configuration = iConfg;
    			oApp.StartTime = Convert.ToDateTime("10/11/2001 10:00:00 AM");
    			oApp.EndTime = Convert.ToDateTime("10/11/2001 11:00:00 AM");
    			oApp.Location = "My Cube";
    			oApp.Subject = "Test Create App in C#";
    			oApp.TextBody = "Hello...";
    
    			// Add Recurring
    			// Every Thursday starting Today and run 3 times
    			CDO.IRecurrencePatterns iRPatters = oApp.RecurrencePatterns;
    			CDO.IRecurrencePattern iRPatter = iRPatters.Add("Add");
    			iRPatter.Frequency = CDO.CdoFrequency.cdoWeekly;
    			iRPatter.Interval = 1;    // 1 hour from 10 to 11
    			iRPatter.DaysOfWeek.Add(4);  // every Thursday
    			iRPatter.Instances = 3;
    
    			// Specify Exceptions
    			CDO.IExceptions iExceps = oApp.Exceptions;
    			CDO.IException iExcep;
    
    			// Delete
    			iExcep = oApp.Exceptions.Add("DELETE");	
    			iExcep.RecurrenceID = Convert.ToDateTime("10/11/2001 10:00:00 AM");
    
    			// Modify
    			iExcep = oApp.Exceptions.Add("MODIFY");	
    			iExcep.RecurrenceID = Convert.ToDateTime("10/18/2001 10:00:00 AM");
    			iExcep.StartTime = Convert.ToDateTime("10/17/2001 10:00:00 AM");
    			iExcep.EndTime = Convert.ToDateTime("10/17/2001 1:00:00 pM");
    
    			
    			oApp.DataSource.SaveToContainer(sURL, null, 
    				ADODB.ConnectModeEnum.adModeReadWrite, 
    				ADODB.RecordCreateOptionsEnum.adCreateNonCollection, 
    				ADODB.RecordOpenOptionsEnum.adOpenSource, 
    				"", "");
    
    			oCn.Close();
    
    			oApp = null;
    			oCn = null;
    			oFields = null;
    			}
    			catch (Exception e)
    			{
    				Console.WriteLine("{0} Exception caught.", e);
    			}			
    		}
            }
    }
    					
  6. Modify the code where you see TODO.
  7. Press the F5 key to build and run the program.
  8. Verify that the specified appointments are created.

↑ Back to the top


Keywords: KB310555, kbhowtomaster

↑ Back to the top

Article Info
Article ID : 310555
Revision : 5
Created on : 11/29/2007
Published on : 11/29/2007
Exists online : False
Views : 351