tab

J

Joel Allen

Hello,

Outlook 2003 - Custom Task form.

In the Sub Item_CustomPropertyChange(ByVal Name), I use "Case" to update
certain fields and it works great.

Instead of a custom field change, how can I update something if I go to a
certain Tab in my form? I basically want to do this:

Sub Item_CustomPropertyChange(ByVal Name)

Select Case Name

Case "Clicking on the Accounting Tab"

Call Refresh

End Select

End Sub


Thanks,
Joel
 
G

Guest

Sorry, there's no Page object nor an event you can directly trap to determine
a page change. The best you can do is trap Click events for any control on
that page so you'll know what page they are on.
 
S

Sue Mosher [MVP-Outlook]

FWIW, OL2007 provides a new Inspector.PageChange event. Not useful in custom form code, but definitely useful in add-ins.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
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