![]() |
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. |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
![]()
Outlook 2003...building a custom form.
I need to make a command button open a new form. The command button is "CommandButton26" -- I am very new at programming and was wondering if anyone would help me out on a code to make this button open a new form. The forms I am working with are contact forms... I would appreciate any assistance! thanks! |
#2
|
|||
|
|||
![]()
To create a new instance of a custom form programmatically, use the Add method on the target folder's Items collection:
Set newItem = targetFolder.Items.Add("IPM.Post.YourFormName") If it's a message form, use the Drafts folder as the target. If the target is a default folder, you can use the Namespace.GetDefaultFolder method to return it as a MAPIFolder object. To create an item in another person's mailbox, use Namespace.GetSharedDefaultFolder to get the MAPIFolder Otherwise, you can use the code at http://www.outlookcode.com/d/code/getfolder.htm to walk the folder hierarchy and return the MAPIFolder corresponding to a given path string. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "Steve" wrote in message ... Outlook 2003...building a custom form. I need to make a command button open a new form. The command button is "CommandButton26" -- I am very new at programming and was wondering if anyone would help me out on a code to make this button open a new form. The forms I am working with are contact forms... I would appreciate any assistance! thanks! |
#3
|
|||
|
|||
![]()
Thank you -- Great book by the way, I use it nearly everyday!
thanks again Sue. "Sue Mosher [MVP-Outlook]" wrote: To create a new instance of a custom form programmatically, use the Add method on the target folder's Items collection: Set newItem = targetFolder.Items.Add("IPM.Post.YourFormName") If it's a message form, use the Drafts folder as the target. If the target is a default folder, you can use the Namespace.GetDefaultFolder method to return it as a MAPIFolder object. To create an item in another person's mailbox, use Namespace.GetSharedDefaultFolder to get the MAPIFolder Otherwise, you can use the code at http://www.outlookcode.com/d/code/getfolder.htm to walk the folder hierarchy and return the MAPIFolder corresponding to a given path string. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "Steve" wrote in message ... Outlook 2003...building a custom form. I need to make a command button open a new form. The command button is "CommandButton26" -- I am very new at programming and was wondering if anyone would help me out on a code to make this button open a new form. The forms I am working with are contact forms... I would appreciate any assistance! thanks! |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Making a second calendar | syssupspe | Outlook - Calandaring | 7 | April 15th 07 11:37 PM |
Look at others schedule when making meeting | Amy Berning | Outlook - Calandaring | 1 | July 29th 06 08:21 AM |
making not able to forward...? | George | Outlook - General Queries | 6 | February 13th 06 09:58 PM |
Making an apt into a public calendar | SAC | Outlook and VBA | 1 | February 9th 06 05:42 PM |
code : Code : 800cccd2 | scotty971fr | Outlook Express | 1 | January 20th 06 12:59 AM |