![]() |
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
|
|||
|
|||
![]()
I need to create a button on the toolbar that will open a template stored in
the office\templates directory. I tried creating a button that hyperlinked to the template but Outlook has decided such a move is dangerous and once the user gets past all the warnings, the template comes up blank because outlook has blocked all the functionality. Any ideas how I can use VBA to get past the annoying prompts and get the button to open the template directly? In effect, the button would recreate the steps of going to File New Choose Form Look In: User Templates In File System Open test.otf |
Ads |
#2
|
|||
|
|||
![]()
Write a macro that calls the Application.CreateItemFromTemplate method:
Sub MakeItem() Set newItem = Application.CreateItemFromTemplate("c:\your path\open test.oft") newItem.Display Set newItem = Nothing End Sub -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "garfong" wrote in message ... I need to create a button on the toolbar that will open a template stored in the office\templates directory. I tried creating a button that hyperlinked to the template but Outlook has decided such a move is dangerous and once the user gets past all the warnings, the template comes up blank because outlook has blocked all the functionality. Any ideas how I can use VBA to get past the annoying prompts and get the button to open the template directly? In effect, the button would recreate the steps of going to File New Choose Form Look In: User Templates In File System Open test.otf |
#3
|
|||
|
|||
![]()
Wow! You're good!
That worked like a charm. Thanks a million! "Sue Mosher [MVP-Outlook]" wrote: Write a macro that calls the Application.CreateItemFromTemplate method: Sub MakeItem() Set newItem = Application.CreateItemFromTemplate("c:\your path\open test.oft") newItem.Display Set newItem = Nothing End Sub -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "garfong" wrote in message ... I need to create a button on the toolbar that will open a template stored in the office\templates directory. I tried creating a button that hyperlinked to the template but Outlook has decided such a move is dangerous and once the user gets past all the warnings, the template comes up blank because outlook has blocked all the functionality. Any ideas how I can use VBA to get past the annoying prompts and get the button to open the template directly? In effect, the button would recreate the steps of going to File New Choose Form Look In: User Templates In File System Open test.otf |
#4
|
|||
|
|||
![]()
Here is a very simple solution:
1)Customize menu (right click in menu bar) 2)click en "rearrange commands" 3)Select any menu bar (may be you can create a new one) 4)Add a button. 5)click in "modify selection" 6)Edit Hyperlink 7)choose existing file and select your .oft file. I hope this help you. See you. "garfong" wrote: I need to create a button on the toolbar that will open a template stored in the office\templates directory. I tried creating a button that hyperlinked to the template but Outlook has decided such a move is dangerous and once the user gets past all the warnings, the template comes up blank because outlook has blocked all the functionality. Any ideas how I can use VBA to get past the annoying prompts and get the button to open the template directly? In effect, the button would recreate the steps of going to File New Choose Form Look In: User Templates In File System Open test.otf |
#5
|
|||
|
|||
![]()
That won't work in Outlook 2007, in my experience.
-- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "Walter" wrote in message ... Here is a very simple solution: 1)Customize menu (right click in menu bar) 2)click en "rearrange commands" 3)Select any menu bar (may be you can create a new one) 4)Add a button. 5)click in "modify selection" 6)Edit Hyperlink 7)choose existing file and select your .oft file. I hope this help you. See you. "garfong" wrote: I need to create a button on the toolbar that will open a template stored in the office\templates directory. I tried creating a button that hyperlinked to the template but Outlook has decided such a move is dangerous and once the user gets past all the warnings, the template comes up blank because outlook has blocked all the functionality. Any ideas how I can use VBA to get past the annoying prompts and get the button to open the template directly? In effect, the button would recreate the steps of going to File New Choose Form Look In: User Templates In File System Open test.otf |
#6
|
|||
|
|||
![]()
Is this also possible to do this with forms i published? The last 4 hours I
tried to put "olformregistry" and "olorganizationregistry" in the command, but I can't get it to work. Or as a alternative to open the dialog with standard the public forms? Or are i'm searching for something that is imposible. What I want is for users to "with one button to choose from I list off published forms for sending e-mail". Manny thanks Peter "Sue Mosher [MVP-Outlook]" wrote: Write a macro that calls the Application.CreateItemFromTemplate method: Sub MakeItem() Set newItem = Application.CreateItemFromTemplate("c:\your path\open test.oft") newItem.Display Set newItem = Nothing End Sub -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "garfong" wrote in message ... I need to create a button on the toolbar that will open a template stored in the office\templates directory. I tried creating a button that hyperlinked to the template but Outlook has decided such a move is dangerous and once the user gets past all the warnings, the template comes up blank because outlook has blocked all the functionality. Any ideas how I can use VBA to get past the annoying prompts and get the button to open the template directly? In effect, the button would recreate the steps of going to File New Choose Form Look In: User Templates In File System Open test.otf |
#7
|
|||
|
|||
![]()
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. See http://www.outlookcode.com/article.aspx?id=56 for other ideas. BTW, using a published custom form to send messages outside an Exchange organization can cause problems with attachments for the recipients. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "PeterHS" wrote in message ... Is this also possible to do this with forms i published? The last 4 hours I tried to put "olformregistry" and "olorganizationregistry" in the command, but I can't get it to work. Or as a alternative to open the dialog with standard the public forms? Or are i'm searching for something that is imposible. What I want is for users to "with one button to choose from I list off published forms for sending e-mail". Manny thanks Peter "Sue Mosher [MVP-Outlook]" wrote: Write a macro that calls the Application.CreateItemFromTemplate method: Sub MakeItem() Set newItem = Application.CreateItemFromTemplate("c:\your path\open test.oft") newItem.Display Set newItem = Nothing End Sub -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "garfong" wrote in message ... I need to create a button on the toolbar that will open a template stored in the office\templates directory. I tried creating a button that hyperlinked to the template but Outlook has decided such a move is dangerous and once the user gets past all the warnings, the template comes up blank because outlook has blocked all the functionality. Any ideas how I can use VBA to get past the annoying prompts and get the button to open the template directly? In effect, the button would recreate the steps of going to File New Choose Form Look In: User Templates In File System Open test.otf |
#8
|
|||
|
|||
![]()
Thank you.
I tried this in outlook 2007 and this works fine. Rene "Walter" wrote: Here is a very simple solution: 1)Customize menu (right click in menu bar) 2)click en "rearrange commands" 3)Select any menu bar (may be you can create a new one) 4)Add a button. 5)click in "modify selection" 6)Edit Hyperlink 7)choose existing file and select your .oft file. I hope this help you. See you. "garfong" wrote: I need to create a button on the toolbar that will open a template stored in the office\templates directory. I tried creating a button that hyperlinked to the template but Outlook has decided such a move is dangerous and once the user gets past all the warnings, the template comes up blank because outlook has blocked all the functionality. Any ideas how I can use VBA to get past the annoying prompts and get the button to open the template directly? In effect, the button would recreate the steps of going to File New Choose Form Look In: User Templates In File System Open test.otf |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
In Office Outlook REMINDERS can I reset default button to OPEN ITE | Angel Dupree | Outlook - Installation | 1 | March 7th 08 09:22 PM |
Outlook 2003 - Button to add body text to an OPEN email | Patrick Pirtle | Outlook and VBA | 5 | September 14th 07 03:15 PM |
OFT Files won't open correctly - email instead of template | Tmuldoon | Outlook - Using Forms | 1 | April 23rd 07 09:48 PM |
How do i open a word template from within a contact in Outlook 200 | Mark | Outlook - Using Contacts | 3 | July 28th 06 08:48 PM |
Outlook 2000 - Button to run Macro then open Database | David C | Outlook and VBA | 1 | January 25th 06 03:44 PM |