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
|
|
Dmitry Kostochko
Add-in Express team
Posts: 2887
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
|
|
Taco Oosterkamp
Posts: 15
Joined: 2006-06-15
|
Thank you - I think I'll manage to do that :)
Taco |
|