Click here to Skip to main content
15,880,503 members
Articles / Programming Languages / VBScript

How To Set An Appointment Using Microsoft Office Outlook 2003

Rate me:
Please Sign up or sign in to vote.
4.63/5 (29 votes)
5 Sep 2009CPOL1 min read 38.7K   208   32   9
This article is about how to create / place an appointment using Microsoft Office Outlook 2003 API

Introduction

Sending an email using Microsoft Outlook 2003 is nothing original for most of the VBA developers. It is very common and also a very good practice. I hope that most of the VBA developers are very much familiar with this one. This article is not about how to send an email from customized Microsoft Office Applications using Microsoft Outlook API, it’s about how to place / set an appointment using Microsoft Outlook 2003 API. 

Background

A large number of companies use the Microsoft Office application for their In/external office automation application. In this article, I would like to demonstrate how to set an appointment using Microsoft Outlook 2003 API.

Using the Code

Using the code is very simple. Before we start, I would like to share some objects of Microsoft Outlook 2003 API, which I used for this purpose. The objects list is given below:

Objects
  • Outlook.Application
  • Outlook.Namespace
  • Outlook.MAPIFolder
  • Outlook.Recipient
  • Outlook.AppointmentItem

More details on Microsoft Office Outlook 2003 Integration API Reference can be found at this link.

I wrote a very simple procedure for doing this. A sample code example is given below.

Sample Code Example

VB.NET
Public Sub myAppointment(strRecipient As String, _
                          strSubject As String, _
                          strBody As String, _
                          dtStartDate As Date, _
                 Optional intReminder As Variant, _
                 Optional intDuration As Variant)
'Author: Md. Marufuzzaman
'Created:
'Description: Set an appointment;

On Error GoTo ErrorHandler:

    Dim ObjApplication As Outlook.Application
    Dim ObjNamespace As Outlook.Namespace
    Dim objFolder As Outlook.MAPIFolder
    Dim ObjRecipient As Outlook.strRecipient
    Dim ObjApplicationt As Outlook.AppointmentItem
    Dim apptDate As Date
    Dim strContact As String
    
    Set ObjApplication = CreateObject("Outlook.Application")
    Set ObjNamespace = ObjApplication.GetNamespace("MAPI")
    Set ObjRecipient = ObjNamespace.CreatestrRecipient(strRecipient)
    Set objFolder = ObjNamespace.GetSharedDefaultFolder(ObjRecipient, olFolderCalendar)

    If Not objFolder Is Nothing Then
        Set ObjApplicationt = objFolder.Items.Add
        If Not ObjApplicationt Is Nothing Then
            With ObjApplicationt
                .strSubject = strSubject
                .strBody = strBody
                .Start = dtStartDate
                If Not IsNull(intReminder) Then
                    .ReminderSet = True
                    .intReminderBeforeStart = intReminder
                End If
                If Not IsNull(intDuration) Then
                    .intDuration = intDuration
                Else
                    .intDuration = 10
                End If
                .Save
            End With
        End If
    End If
    Set ObjApplication = Nothing
    Set ObjNamespace = Nothing
    Set objFolder = Nothing
    Set ObjRecipient = Nothing
    Set ObjApplicationt = Nothing


Exit_myAppointment:
        Exit Sub
    
ErrorHandler:

        MsgBox Err.Description, vbCritical, "Error!"
        Resume Exit_myAppointment:

End Sub

Conclusion

I hope that this article might be helpful to you. Enjoy!

History

  • 26th August, 2009: Initial post.
  • 5th September 2009: Use data type Variant instant of Integer type.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions

 
GeneralMy vote of 2 Pin
Jyothikarthik_N17-Apr-11 5:03
Jyothikarthik_N17-Apr-11 5:03 
GeneralRe: My vote of 2 Pin
Md. Marufuzzaman5-Oct-11 22:55
professionalMd. Marufuzzaman5-Oct-11 22:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.