Display Shortcuts in Outlook 2003 Bar

Add-in Express™ Support Service
That's what is more important than anything else

Display Shortcuts in Outlook 2003 Bar
 
Taco Oosterkamp




Posts: 15
Joined: 2006-06-15
Dmitry (or anyone else),

Would you perhaps know how to programmatically show the Shortcuts view in the Outlook 2003 bar on the left side of the screen?

The user can display it by typing Ctrl+7, but is there a way to show it programmatically too?

Thanks in advance.

BTW - I really like ADX, it makes me do things to Outlook that really save me a lot of time. Chapeau.

Kind regards,
Taco Oosterkamp
Posted 17 Jun, 2006 06:37:13 Top
Dmitry Kostochko


Add-in Express team


Posts: 2875
Joined: 2004-04-05
Hi Taco,

Here is the idea. I think you will be able to translate this to Delphi. :-)


Sub ShowShortcutBar()
  Dim ShortcutBar As OutlookBarPane
  Set ShortcutBar = Application.ActiveExplorer.Panes.Item(1)
  ShortcutBar.Visible = True
End Sub


Posted 19 Jun, 2006 06:39:53 Top
Taco Oosterkamp




Posts: 15
Joined: 2006-06-15
Thank you - I think I'll manage to do that :)

Taco
Posted 20 Jun, 2006 05:07:56 Top