A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook - Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Delete a custom page



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old March 12th 08, 08:11 PM posted to microsoft.public.outlook.program_forms
Tom
external usenet poster
 
Posts: 181
Default Delete a custom page

In Outlook 2003 I have a custom message form. On the second page I have the
feilds I created for the user to enter the information, which is inserted
into the body on the standard page. Up to here everything is good. I want
to use before send to delete the custom page (where the enter the info) so
when recieved it just is a standard message.

any suggestions? I have tried both delete and revove without any luck

'Set myPages = Item.GetInspector.ModifiedFormPages
'myPages.Remove("Down User/High Priority")

'Item.GetInspector.Remove "Down User/High Priority"


Thanks
Tom
  #2  
Old March 12th 08, 08:15 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Delete a custom page

Pages can be hidden (Inspector.HideFormPage) but not deleted. The code to show/hide a page needs to be in the form's Item_Open event handler. In this scenario, you might hide the page in the published form's design, then use this code to show the page when the user creates a new message with the form:

Function Item_Open()
If Item.Sent = False Then
Item.GetInspector.ShowFormPage "Down User/High Priority"
End If
End Function

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


"Tom" wrote in message ...
In Outlook 2003 I have a custom message form. On the second page I have the
feilds I created for the user to enter the information, which is inserted
into the body on the standard page. Up to here everything is good. I want
to use before send to delete the custom page (where the enter the info) so
when recieved it just is a standard message.

any suggestions? I have tried both delete and revove without any luck

'Set myPages = Item.GetInspector.ModifiedFormPages
'myPages.Remove("Down User/High Priority")

'Item.GetInspector.Remove "Down User/High Priority"


Thanks
Tom

 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Required Attendees in custom inspector page Tim Radford Outlook - Using Forms 0 June 14th 07 12:17 PM
Task page on custom forms Michael Outlook - Using Forms 1 October 4th 06 08:32 PM
Accessing a custom form via web page Annzka Outlook - Using Forms 2 May 24th 06 08:43 AM
Cannot get page 2 on a custom form Alex Martinez Outlook - Using Forms 4 March 29th 06 08:23 PM
How to validate a Custom Property Page Jack Zhang Add-ins for Outlook 1 February 9th 06 07:22 PM


All times are GMT +1. The time now is 03:56 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.