tab

  • Thread starter Thread starter Joel Allen
  • Start date Start date
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
 
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.
 
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
 
Back
Top