VBA: Display Specified Date in Outlook Calendar

Last reviewed: March 2, 1998
Article ID: Q175962
The information in this article applies to:
  • Microsoft Visual Basic for Applications version 5.0
  • Microsoft Outlook 97

SUMMARY

By default, when the Microsoft Outlook Calendar is activated, it displays the current date. However, you can use the Inspector object of an appointment to access the View menu and display the calendar with a date other than the current date.

MORE INFORMATION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:

   http://www.microsoft.com/support/supportnet/refguide/default.asp

The following sample Microsoft Visual Basic for Applications code automates Outlook from another program. It accesses the first appointment in the Calendar folder and uses it to display that date in the calendar.

NOTE: Be sure "Microsoft Outlook 8.0 Object Model" is selected in the References dialog box of the program that contains this code.

   Dim Outlook As Object
   Dim oMAPI As Object
   Dim oCalendar As Object
   Dim oAppt As Object
   Dim oViewCmdBar As Object
   Dim oItem As Object
   Dim nItem As Integer

   ' Create Outlook Application object and log on.
   Set Outlook = CreateObject("Outlook.Application")
   Set oMAPI = Outlook.GetNameSpace("MAPI")
   oMAPI.Logon

   ' Retrieve the Calendar folder.
   Set Calendar = mapi.GetDefaultFolder(olFolderCalendar)

   ' You can retrieve your specific appointment differently.
   ' This is just to get the first item, so we can see the calendar
   ' displayed for that day.
   Set oAppt = oCalendar.Items(1)

   ' Retrieve the View menu.
   Set oViewCmdBar = oAppt.GetInspector.CommandBars.Item("View")

   ' Locate the Calendar control on the View menu.
   nItem = 1
   Set oItem = oViewCmdBar.Controls(nItem)
   Do While Not oItem.Caption = "Ca&lendar..."
      nItem = nItem + 1
      Set oItem = oViewCmdBar.Controls(nItem)
   Loop

   ' Display the appointment. This must be done in order for the
   ' calendar to be displayed on the next statement.
   oAppt.GetInspector.Display

   ' Execute the Calendar command on the View menu.
   ' This is the command that displays the calendar.
   oItem.Execute

Before quitting your application, you should make sure that the following code is executed to clean up:

    oMAPI.Logoff

REFERENCES

For more information about creating solutions with Microsoft Outlook 97, please see the following articles in the Microsoft Knowledge Base:

   Article-ID: Q166368
   Title     : OL97: How to Get Help Programming with Outlook

   Article-ID: Q170783
   Title     : OL97: Q&A: Questions about Customizing or
               Programming Outlook


Additional query words: kbmacro vba OutSol OutSol97
Keywords : kbcode kbinterop kbprg AutoGnrl OffVBA
Version : WINDOWS:97
Platform : WINDOWS
Issue type : kbhowto


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: March 2, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.