OL98: How to Programmatically Hide Pages of an Outlook Form

ID: Q202281


The information in this article applies to:


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 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/
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:


  4. 
    Dim objOutApp As Outlook.application
    Dim Mail As AppointmentItem 
  5. Add the following code to the Load event of the form:


  6. 
    Set objOutApp = CreateObject("Outlook.application")
    Set Mail = objOutApp.CreateItem(olAppointmentItem)
    Mail.Display 
  7. Add two command buttons to the form and set the captions to Hide Page and Show Page.


  8. In the Click Event of the Hide Page button, add the following code:


  9. 
    objOutApp.ActiveInspector.HideFormPage ("Appointment") 
  10. In the Click Event of the Show Page button, add the following code:


  11. 
    objOutApp.ActiveInspector.ShowFormPage ("Appointment") 
  12. Compile and run the application.


  13. Click Hide Page and then click Show Page.


The Appointment tab of the appointment item should be hidden and then made visible.


REFERENCES

Additional query words:


Keywords          : kbdta OffVBS kbAutomation kbMsg kbOutlook97 kbOutlook98 kbOutlookObj 
Version           : WINDOWS:
Platform          : WINDOWS 
Issue type        : 

Last Reviewed: April 15, 1999