OL98: How to Programmatically Hide Pages of an Outlook Form (202281)



The information in this article applies to:

  • Microsoft Outlook 98

This article was previously published under Q202281

SUMMARY

When creating custom Outlook forms, you may want to hide or display pages based on certain conditions. This can be done by using the HideFormPage and ShowFormPage methods of the Inspector object.

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 professionals 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 a Microsoft Certified Partner or the Microsoft fee-based consulting line at (800) 936-5200. For more information about Microsoft Certified Partners, please visit the following Microsoft Web site: For more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site: The following Microsoft Visual Basic code sample demonstrates this functionality.
  1. Create a new project (Standard EXE).
  2. Add a reference to the Outlook Object Model.
  3. Add the following code to the General Declarations:
    Dim objOutApp As Outlook.application
    Dim Mail As AppointmentItem
    					
  4. Add the following code to the Load event of the form:
    Set objOutApp = CreateObject("Outlook.application")
    Set Mail = objOutApp.CreateItem(olAppointmentItem)
    Mail.Display
    					
  5. Add two command buttons to the form and set the captions to Hide Page and Show Page.
  6. In the Click Event of the Hide Page button, add the following code:
    objOutApp.ActiveInspector.HideFormPage ("Appointment")
    					
  7. In the Click Event of the Show Page button, add the following code:
    objOutApp.ActiveInspector.ShowFormPage ("Appointment")
    					
  8. Compile and run the application.
  9. Click Hide Page and then click Show Page.
The Appointment tab of the appointment item should be hidden and then made visible.

REFERENCES


Modification Type:MajorLast Reviewed:5/13/2002
Keywords:kbAutomation kbhowto kbMsg kbOutlookObj KB202281