Is there a way to get the Categorize Plus, Categorize Menu to open using a Hotkey? From both an Outlook Explorer and Inspector?
I currently use a pair of Outlook Macro's (VBA Code below) to open the standard Outlook Categorize dialog. This is so that I can put the Macro's on the Quick Access Toolbar, give the Quick Access Toolbar item a Hotkey, and then execute the Macro using only the keyboard. (I also use the HotKey execution method as part of some more complex automation done with AutoIt, but that's not part of this question).
Categorize Plus V2.0.178 Professional
Outlook 2007 (12.0.6557.5001) SP2 MSO (12.0.6554.5001)
Windows Server 2008 R2 SP1 x64 (Pretty much the same as Windows 7 SP1 x64 as far as Outlook is concerned)
' Categories - Show the All Categories selection dialog in an Item
Private Function Categories_SelectDialog_Open_Inspector()
Application.ActiveInspector.CurrentItem.ShowCategoriesDialog
End Function
' Categories - Show the All Categories selection dialog in a View
Private Function Categories_SelectDialog_Open_Explorer()
' Walk the command bar:
' Actions -> Categorize -> All Categories
' and show the selection dialog
Dim objExplr As Outlook.Explorer
Set objExplr = Application.ActiveExplorer
Dim colCBs As Office.CommandBars
Set colCBs = objExplr.CommandBars
Dim objCB As Office.CommandBar
Set objCB = colCBs.Item("Menu Bar")
Dim objCBCs As Office.CommandBarControls
Set objCBCs = objCB.Controls
Dim objCBP As Office.CommandBarPopup
Set objCBP = objCBCs.Item("&Actions")
Set objCBCs = objCBP.Controls
Set objCBP = objCBCs.Item("Categor&ize")
Set objCB = objCBP.CommandBar
Set objCBCs = objCBP.Controls
Dim objCBB As Office.CommandBarButton
Set objCBB = objCBCs.Item("&All Categories...")
objCBB.Execute
Categories_SelectDialog_Open_Explorer_Exit:
Set objExplr = Nothing
Set colCBs = Nothing
Set objCB = Nothing
Set objCBCs = Nothing
Set objCBP = Nothing
Set objCBB = Nothing
End Function