Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Outlook forms ( setting default page) 1

Status
Not open for further replies.

Chance1234

IS-IT--Management
Jul 25, 2001
7,871
US
I know not strictly VBA but how do i set the default page on a custom form :?

Chance,

Filmmaker, gentleman and ROMAN!
 
Custom Outlook forms only support VBS, but you cant use the open event with the following:
Code:
Function Item_Open()
    Set objInsp = Item.Getinspector
    objInsp.SetCurrentFormPage "Message"
'   or hide / show pages with:
    objInsp.HideFormPage "Name of page to Hide"
    objInsp.ShowFormPage "Name of page to Show"

End Function


Everybody body is somebodys Nutter.
 
Sorry that should have read "you Can use the open event with the following:

Everybody body is somebodys Nutter.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top