program page 2

A

armando

I create a form with 2 pages and I wuold to have abilitate the second
page only on the receiver form and not in both!Can i do it?
 
S

Sue Mosher [MVP-Outlook]

Sorry, but your post has too many typos in it to be intelligible. Please take a little more time to explain what you're trying to do.

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

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
A

armando

my form has two pages, in one there is the classical textbox (To,
object....); in the second i would put some custom function in
buttonns, but i wont to use this buttons only in the page of reading.
excuse me for my languages but i'm italian
 
S

Sue Mosher [MVP-Outlook]

Design the form so that page 2 is hidden, then put code in the Item_Open event handler to show page 2 when a saved item is opened:

Function Item_Open()
If Item.Size > 0 Then
Item.GetInspector.ShowFormPage "Page 2"
End If
End Function
--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 

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

Similar Threads


Top