| | Awarded by Microsoft since 2005: |  |
| | VBOffice Info | | Visitors | 1390777 | | Impressions | 5095580 |
| |
|
| |
| Author: Michael Bauer | Homepage | | Date: 13.10.2010 | Accessed: 8799 | | | | Description
In Outlook 2010 you can create your own tab on the ribbon with commands to call VBA functions.
First copy the code into the module 'ThisOutlookSession'. This VBA sample creates a new item in the current folder and uses your custom form ('ipm.note.my_test') for that.
How to create the tab: Click File/Options, then 'Customize Ribbon'. Click 'New Tab', and rename the tab and group if you like.
Now select 'Macros' from the 'Choose commands from' listbox. Select the macro and click the 'Add' button |
Public Sub AddMyForm()
Dim Items as Outlook.Items
Dim Item as Object
Set Items=Application.ActiveExplorer.CurrentFolder.Items
Set Item=Items.Add("ipm.note.my_test")
Item.Display
End Sub
|
| | |
| | |  | ReplyAll alerts you before unintentionally replying all, or if you are a confidential BCC recipient of the ... [more] |
| | |  | Access the master category list in the blink of an eye, share your categories in a network, get a reminder service, and ... [more] |
| | |  | SAM automatically sets the sender, signature, and folder for sent items, for instance based on the recipient ... [more] |
| | |  | OLKeeper reliably prevents users from closing their Outlook window and thus possibly missing reminders or ... [more] |
| |
|