How to select a particular tab on an Outlook custom form on entry

C

Charletonp

Hi guys....I have a multi-tab form. As default, these all enter on the main
message tab, but as a workflow solution I would like to enter (on new read)
on a given tab depending on the completion status of previous tabs of the
same form as it passes from person to person. Any ideas - I can't see a
SELECT capability on the VBSCRIPT.
 
S

Sue Mosher [MVP-Outlook]

The method you're looking for is Inspector.SetCurrentFormPage:

Set myInsp = Item.GetInspector
myInsp.SetCurrentFormPage "P.2"
Set myInsp = Nothing
 
C

Charletonp

Thanks, will try and see where I land.
--
Paul


Sue Mosher said:
The method you're looking for is Inspector.SetCurrentFormPage:

Set myInsp = Item.GetInspector
myInsp.SetCurrentFormPage "P.2"
Set myInsp = Nothing

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top